public async Task <bool> CreateCatalogItemAsync([FromBody] CatalogItem catalogItem)
 {
     return(await catalogService.CreateCatalogItemAsync(catalogItem));
 }