Se agrega el registro profesional del medico al usuario.

This commit is contained in:
Dario F. Gomez Z 2023-12-29 14:40:42 -05:00
parent 363717156e
commit a586c52d62
4 changed files with 4 additions and 1 deletions

View File

@ -6,7 +6,7 @@ namespace MSAdminUsuarios.Context
public partial class PERFILPORUSUARIO
{
public int NU_PK_PFLXUSU { get; set; }
//public string? TX_FKDOC_USUMS { get; set; }
public string? TX_FKDOC_USUMS { get; set; }
public int? NU_FK_PFL { get; set; }
public int? BL_ESTADO_PFLXUSU { get; set; } = 1;
public string? TX_UUID_USUMS { get; set; }

View File

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

View File

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

View File

@ -40,5 +40,6 @@ namespace MSAdminUsuarios.Dto
public int? NU_BLOQUEO_USUMS { get; set; }
public string? TX_UUID_USUMS { get; set; }
public int? NU_TIPOUSUARIO_USUMS { get; set; }
public string? TX_REGPROF_MDC { get; set; }
}
}