Files
AlquilaFacil/Entidades/Venta.cs
2024-10-28 22:42:02 -03:00

34 lines
795 B
C#

using System;
using System.Collections.Generic;
namespace Entidades;
public partial class Venta
{
public long Id { get; set; }
public decimal Monto { get; set; }
public long? IdVendedor { get; set; }
public long? IdComprador { get; set; }
public int? Idestado { get; set; }
public int? Idpropiedad { get; set; }
public DateTime Fechainicio { get; set; }
public DateTime? Fechafinal { get; set; }
public virtual ICollection<Contrato> Contratos { get; set; } = new List<Contrato>();
public virtual Cliente? IdCompradorNavigation { get; set; }
public virtual Cliente? IdVendedorNavigation { get; set; }
public virtual Estadoventa? IdestadoNavigation { get; set; }
public virtual Propiedade? IdpropiedadNavigation { get; set; }
}