コード例 #1
0
 public void AddOrder(RestaurantTable table, Employee employee, List <OrderItem> orderItemList)
 {
     try
     {
         order_db.Db_Add_Order(table, employee, orderItemList);
     }
     catch (Exception e)
     {
         throw new Exception("Chapeau application couldn't connect to the database. Therefore we cannot add the orders data.");
     }
 }