public InsumoPedido(int idInsumoPedido, int cantidadInsumo, int estadoInsumoPedido, Insumo insumo) { this.idInsumoPedido = idInsumoPedido; this.cantidadInsumo = cantidadInsumo; this.estadoInsumoPedido = estadoInsumoPedido; this.insumo = insumo; }
public InsumoProveedor(int idInsumoProveedor, int precio, Insumo insumo, Proveedor proveedor) { this.idInsumoProveedor = idInsumoProveedor; this.precio = precio; this.insumo = insumo; this.proveedor = proveedor; }
public EgresoStock(int idEgresoStock, int cantidad, Insumo insumo, DateTime fechaEgreso) { this.idEgresoStock = idEgresoStock; this.cantidad = cantidad; this.insumo = insumo; this.fechaEgreso = fechaEgreso; }
public Ingrediente(int idIngrediente, int cantidad, Receta receta, Insumo insumo) { this.idIngrediente = idIngrediente; this.cantidad = cantidad; this.receta = receta; this.insumo = insumo; }
public IngresoStock(int idIngresoStock, DateTime fechaIngreso, DateTime fechaCaducidad, int cantidad, Pedido pedido, Insumo insumo, int estado) { this.idIngresoStock = idIngresoStock; this.fechaIngreso = fechaIngreso; this.fechaCaducidad = fechaCaducidad; this.cantidad = cantidad; this.pedido = pedido; this.insumo = insumo; this.estado = estado; }
public InsumoCantidad(Insumo insumo, double cantidad, double cantidadHaComprar) { this.insumo = insumo; this.cantidad = cantidad; this.CantidadHaComprar = cantidadHaComprar; }