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; }
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; }
public void AgregarMetodoPago(MetodoPago pago) { this.MetodosPago.Add(pago); }