public void Dispose()
 {
     Bartender.DeleteAll();
     Food.DeleteAll();
     Drink.DeleteAll();
     Patron.DeleteAll();
 }
Example #2
0
 public void Dispose()
 {
     Drink.DeleteAll();
 }
Example #3
0
 public void Dispose()
 {
     Patron.DeleteAll();
     Drink.DeleteAll();
 }
Example #4
0
        public ActionResult DeleteAll()
        {
            Drink.DeleteAll();

            return(RedirectToAction("Index"));
        }