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 AgregarDireccion(Direccion direccion) { this.Direcciones.Add(direccion); }