public ActionResult BeerList(int id)
        {
            var model = _service.GetBeersByBrewery(id);

            return(View(model));
        }