public ActionResult Delete(string id, Brewery brewery)
 {
     BreweryRepository.Delete(id);
     return RedirectToAction("Index");
 }
 public ActionResult Edit(string id, Brewery brewery)
 {
     BreweryRepository.Update(brewery);
     return RedirectToAction("Index");
 }
 public ActionResult Create(Brewery brewery)
 {
     BreweryRepository.Create(brewery);
     return RedirectToAction("Index");
 }