Esempio n. 1
0
 public Compra(int id, float montoTotal, DateTime fechaSolicitud, DateTime fechaEntrega, string status,
               MetodoPago pago, List<DetalleCompra> productos, Direccion direccion)
 {
     this.id = id;
     this.montoTotal = montoTotal;
     this.fechaSolicitud = fechaSolicitud;
     this.fechaEntrega = fechaEntrega;
     this.status = status;
     this.pago = pago;
     this.direccion = direccion;
     this.productos = productos;
 }
Esempio n. 2
0
 public void AgregarDireccion(Direccion direccion)
 {
     this.Direcciones.Add(direccion);
 }
Esempio n. 3
0
 public void AgregarDireccion(Direccion direccion)
 {
     this.Direcciones.Add(direccion);
 }