Esempio n. 1
0
 public static void insert(Model.ServicoComanda servicoComanda)
 {
     Bll.ServicoComandaBLL servicoComandaBLL = new Bll.ServicoComandaBLL();
     servicoComandaBLL.insert(servicoComanda);
 }
Esempio n. 2
0
 public static void update(Model.ServicoComanda servicoComanda)
 {
     Bll.ServicoComandaBLL servicoCOmandaBLL = new Bll.ServicoComandaBLL();
     servicoCOmandaBLL.update(servicoComanda);
 }
Esempio n. 3
0
 public static void delete(int idComanda)
 {
     Bll.ServicoComandaBLL servicoComandaBLL = new Bll.ServicoComandaBLL();
     servicoComandaBLL.delete(idComanda);
 }
Esempio n. 4
0
 public static Model.ServicoComanda selectById(int idComanda)
 {
     Bll.ServicoComandaBLL servicoCOmandaBLL = new Bll.ServicoComandaBLL();
     return(servicoCOmandaBLL.selectById(idComanda));
 }
Esempio n. 5
0
 public static List <Model.ServicoComanda> selectByIdComanda(int idComanda)
 {
     Bll.ServicoComandaBLL servicoComandaBLL = new Bll.ServicoComandaBLL();
     return(servicoComandaBLL.selectByIdComanda(idComanda));
 }