actualizacion de entidades
This commit is contained in:
@@ -5,17 +5,17 @@ namespace Entidades;
|
||||
|
||||
public partial class Garante
|
||||
{
|
||||
public long dni { get; set; }
|
||||
public long Dni { get; set; }
|
||||
|
||||
public string nombre { get; set; } = null!;
|
||||
public string Nombre { get; set; } = null!;
|
||||
|
||||
public string apellido { get; set; } = null!;
|
||||
public string Apellido { get; set; } = null!;
|
||||
|
||||
public string domicilio { get; set; } = null!;
|
||||
public string Domicilio { get; set; } = null!;
|
||||
|
||||
public string celular { get; set; } = null!;
|
||||
public string Celular { get; set; } = null!;
|
||||
|
||||
public string domiciliolaboral { get; set; } = null!;
|
||||
public string Domiciliolaboral { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<Contrato> idcontratos { get; set; } = new List<Contrato>();
|
||||
public virtual ICollection<Contrato> Idcontratos { get; set; } = new List<Contrato>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user