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