public ProductCategory CreateProductCategory(ProductCategory productCategory)
    {
        var category = new infrastructure.Data.Models.ProductCategory
        {
            ProductCategoryName        = productCategory.Name,
            ProductCategoryDescription = productCategory.Description
        };

        _collectionsRepository.CreateProductCategory(category);
        return(_mapper.Map <ProductCategory>(category));
    }