public IActionResult Get(int id)
        {
            GetByIdBrochureViewModel brochure = _brochureService.GetById(id);

            return(Ok(brochure));
        }