private void SelectTables()
 {
     Restro.ShowAvailableTables(true);
     Console.WriteLine("Select Table :");
     TableId = Convert.ToInt32(Console.ReadLine());
     Restro.BookTable(TableId);
 }
Exemple #2
0
        public void ShowCustomer(IRestro restro)
        {
            UserInfo();

            restro.BookTable();

            restro.Order(UserName);
        }
        private void BookTable()
        {
BookTable:
            TableModel table = restro.BookTable(restro.ShowTables());

            if (table != null)
            {
                TableAlloted = table;
            }
            else
            {
                goto BookTable;
            }
        }
 private void ChooseTable(IRestro restro, Customer customer)
 {
     TableId = restro.BookTable(customer);
 }