public async Task<IEnumerable<CategoryProduct>> GetProductsByCategory(int categoryId)
 {
     return await _categoryproductRepository.GetProductsByCategory(categoryId);
 }