Exemplo n.º 1
0
 public static bool CerrarCaja(int id)
 {
     return(CajaDAL.EstablecerEstado(id, false));
 }
Exemplo n.º 2
0
 public static int Crear(Caja caja)
 {
     return(CajaDAL.Crear(caja));
 }
Exemplo n.º 3
0
 public static bool AbrirCaja(int id)
 {
     return(CajaDAL.EstablecerEstado(id, true));
 }