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

            return(RedirectToAction("Index"));
        }