示例#1
0
 //To get a specific Table
 public Table GetTable(int TableNumber)
 {
     try
     {
         Table table = Table_DB.GetTable(TableNumber);
         return(table);
     }
     catch (Exception)
     {
         throw new Exception("The system couldn't connect to the database");
     }
 }