traidas entidades de la db
Signed-off-by: fede <federico.nicolas.polidoro@gmail.com>
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user