actualizacion de entidades
This commit is contained in:
@@ -5,29 +5,29 @@ namespace Entidades;
|
||||
|
||||
public partial class Venta
|
||||
{
|
||||
public long id { get; set; }
|
||||
public long Id { get; set; }
|
||||
|
||||
public decimal monto { get; set; }
|
||||
public decimal Monto { get; set; }
|
||||
|
||||
public long? idprop_old { get; set; }
|
||||
public long? IdVendedor { get; set; }
|
||||
|
||||
public long? idprop_new { get; set; }
|
||||
public long? IdComprador { get; set; }
|
||||
|
||||
public int? idestado { get; set; }
|
||||
public int? Idestado { get; set; }
|
||||
|
||||
public int? idpropiedad { get; set; }
|
||||
public int? Idpropiedad { get; set; }
|
||||
|
||||
public DateTime fechainicio { get; set; }
|
||||
public DateTime Fechainicio { get; set; }
|
||||
|
||||
public DateTime? fechafinal { get; set; }
|
||||
public DateTime? Fechafinal { get; set; }
|
||||
|
||||
public virtual ICollection<Contrato> Contratos { get; set; } = new List<Contrato>();
|
||||
|
||||
public virtual Estadoventum? idestadoNavigation { get; set; }
|
||||
public virtual Cliente? IdCompradorNavigation { get; set; }
|
||||
|
||||
public virtual Cliente? idprop_newNavigation { get; set; }
|
||||
public virtual Cliente? IdVendedorNavigation { get; set; }
|
||||
|
||||
public virtual Cliente? idprop_oldNavigation { get; set; }
|
||||
public virtual Estadoventa? IdestadoNavigation { get; set; }
|
||||
|
||||
public virtual Propiedade? idpropiedadNavigation { get; set; }
|
||||
public virtual Propiedade? IdpropiedadNavigation { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user