public ActionResult Reviews(int id)
        {
            var model = _service.GetReviewsForBrewery(id);

            return(View(model));
        }