This commit is contained in:
Jhonatan Pelaez 2023-10-25 09:05:58 -05:00
commit 39db90fc07
3 changed files with 4 additions and 1 deletions

View File

@ -31,5 +31,6 @@ namespace MSAdminUsuarios.Context
public string? TX_SEDES_USUMS { get; set; }
public int? NU_BLOQUEO_USUMS { get; set; } = 1;
public string? TX_UUID_USUMS { get; set; }
public int? NU_TIPOUSUARIO_USUMS { get; set; }
}
}

View File

@ -265,6 +265,7 @@ namespace MSAdminUsuarios.Controllers
existe.NU_MODALIDADCTT_USUMS = editado.NU_MODALIDADCTT_USUMS;
existe.TX_SEDES_USUMS = editado.TX_SEDES_USUMS;
existe.NU_BLOQUEO_USUMS = editado.NU_BLOQUEO_USUMS;
existe.NU_TIPOUSUARIO_USUMS = editado.NU_TIPOUSUARIO_USUMS;
ErrorModel errorPFLxUSUMS = await ActualizarRelaciones(existe.TX_PKDOC_USUMS, editado.TX_PKDOC_USUMS);

View File

@ -38,5 +38,6 @@ namespace MSAdminUsuarios.Dto
public int? NU_MODALIDADCTT_USUMS { get; set; }
public string? TX_SEDES_USUMS { get; set; }
public int? NU_BLOQUEO_USUMS { get; set; }
public int? NU_TIPOUSUARIO_USUMS { get; set; }
}
}