public ActionResult SaleList(int id)
        {
            var model = _service.GetSalesByBrewery(id);

            return(View(model));
        }