34 lines
795 B
C#
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; }
|
|
}
|