예제 #1
0
 public Venta()
 {
     estado        = EstadoVenta.activa;
     vendedor      = new Vendedor();
     cliente       = new Cliente();
     transportista = new Transportista();
     direccion     = new Direccion();
 }
예제 #2
0
 public Venta(Vendedor vendedor, int idVenta, Cliente cliente, Transportista transportista, DateTime fecha_e, EstadoVenta estado, Direccion direccion)
 {
     this.vendedor      = vendedor;
     this.idVenta       = idVenta;
     this.cliente       = cliente;
     this.transportista = transportista;
     this.fecha_e       = fecha_e;
     this.estado        = estado;
     this.direccion     = direccion;
 }