コード例 #1
0
 public static void insert(Model.Comanda comanda)
 {
     Bll.ComandaBLL comandaBLL = new Bll.ComandaBLL();
     comandaBLL.insert(comanda);
 }
コード例 #2
0
 public static Model.Comanda selectByID(int comandaID)
 {
     Bll.ComandaBLL comandaBLL = new Bll.ComandaBLL();
     return(comandaBLL.selectByID(comandaID));
 }
コード例 #3
0
 public static List <Model.Comanda> select()
 {
     Bll.ComandaBLL comandaBLL = new Bll.ComandaBLL();
     return(comandaBLL.select());
 }
コード例 #4
0
 public static void update(Model.Comanda comanda)
 {
     Bll.ComandaBLL comandaBLL = new Bll.ComandaBLL();
     comandaBLL.update(comanda);
 }