public IActionResult GetProductsBrandListForScreen(int catalogueid)
        {
            var results = catalogueSvc.GetProductsBrandList(catalogueid);

            if (results != null)
            {
                return(Ok(mapper.Map <IEnumerable <HubBrand>, IEnumerable <DropDownListViewModel> >(results)));
            }

            return(NotFound());
        }