public static DataSet getComanda(int id_comanda)
 {
     return(Detalle_Comanda_datos.getDetalle(id_comanda));
 }
Exemplo n.º 2
0
 public static bool detalleRepetido(int id_producto, int id_comanda)
 {
     return(Detalle_Comanda_datos.detalleRepetido(id_comanda, id_producto));
 }
Exemplo n.º 3
0
 public bool guardarDetalle()
 {
     return(Detalle_Comanda_datos.guardarDetalle(id_comanda, Id_producto, Nombre_producto, Cantidad, Precio_venta, Precio_costo, Total, Baja));
 }
Exemplo n.º 4
0
 public static bool actualizarCantidad(int id_producto, int id_comanda, int cantidad)
 {
     return(Detalle_Comanda_datos.actualizarCantidad(id_comanda, id_producto, cantidad));
 }
Exemplo n.º 5
0
 public static bool eliminarDetalle(int id_detalle)
 {
     return(Detalle_Comanda_datos.eliminarDetalle(id_detalle));
 }
Exemplo n.º 6
0
 public static bool verificarComandaAbierta(int mesa, int estado, DateTime desde, DateTime hasta)
 {
     return(Detalle_Comanda_datos.verificarComandaAbierta(mesa, estado, desde, hasta));
 }