public ActionResult GetBrewery(Guid id)
        {
            BreweryPoco poco = _logic.Get(id);

            if (poco == null)
            {
                return(NotFound());
            }
            else
            {
                return(Ok(poco));
            }
        }