public int GetCountByCategoryName(string categoryName)
        {
            if (string.IsNullOrEmpty(categoryName) || string.IsNullOrWhiteSpace(categoryName))
            {
                categoryName = string.Empty;
            }

            return(_productDal.GetCountByCategoryName(categoryName));
        }