private ProjectCategoryProduct IncludeProduct(ProjectCategoryProduct projectCategoryProduct)
 {
     try
     {
         projectCategoryProduct.Product = _productService.Get(projectCategoryProduct.GetProductId());
         return(projectCategoryProduct);
     }
     catch (Exception e)
     {
         throw new Exception(e.Message);
     }
 }