public ActionResult DeleteBreakfast(int id, int breakfastId) { Breakfast breakfast = Breakfast.Find(breakfastId); breakfast.Delete(); Login login = Login.Find(id); List <Breakfast> allBreakfasts = Breakfast.GetAllBreakfast(); ViewBag.Breakfast = allBreakfasts; return(View("Index", login)); }