a ver si no me olcideo de commitear otra vez
This commit is contained in:
31
Entidades/Garante.cs
Normal file
31
Entidades/Garante.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Entidades;
|
||||
|
||||
public partial class Garante
|
||||
{
|
||||
public long Dni { get; set; }
|
||||
|
||||
public long Cuil { get; set; }
|
||||
|
||||
public string Nombre { get; set; } = null!;
|
||||
|
||||
public string Apellido { get; set; } = null!;
|
||||
|
||||
public string Email { get; set; } = null!;
|
||||
|
||||
public string Celular { get; set; } = null!;
|
||||
|
||||
public string Domicilio { get; set; } = null!;
|
||||
|
||||
public string Lugartrabajo { get; set; } = null!;
|
||||
|
||||
public string Domiciliolaboral { get; set; } = null!;
|
||||
|
||||
public byte[]? Contrasena { get; set; }
|
||||
|
||||
public virtual ICollection<Contrato> Idcontratos { get; set; } = new List<Contrato>();
|
||||
|
||||
public virtual ICollection<Grupo> Idgrupos { get; set; } = new List<Grupo>();
|
||||
}
|
||||
Reference in New Issue
Block a user