Example #1
0
 // By Liv
 public void UpdateTableOrder(int id, int status) // Updates the table
 {
     try
     {
         orderItemDAO.UpdateTableOrder(id, status); // by orederItem_id and status
     }
     catch
     {
         throw new Exception("Could not update TableOrder");
     }
 }