public ActionResult Delete(Lunch lunch)
 {
     db.DeleteLunch(lunch.Id);
     return(RedirectToAction("Index"));
 }