public async Task <IActionResult> CreateCatalog([FromBody] CatalogItem catalog)
        {
            try
            {
                var item = _catalogRepository.CreateNewItem(catalog);
                await _catalogRepository.SaveChangesAsync();

                return(CreatedAtRoute("GetItemById", new { id = item.Id }, item));
            }
            catch (Exception ex)
            {
                _logger.LogError($"{ex.Message}");
                throw;
            }
        }