34 lines
794 B
C#
34 lines
794 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? idprop_old { get; set; }
|
|
|
|
public long? idprop_new { 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 Estadoventum? idestadoNavigation { get; set; }
|
|
|
|
public virtual Cliente? idprop_newNavigation { get; set; }
|
|
|
|
public virtual Cliente? idprop_oldNavigation { get; set; }
|
|
|
|
public virtual Propiedade? idpropiedadNavigation { get; set; }
|
|
}
|