public string Add(string CategoryName)
        {
            string result = "";

            try
            {
                ProductCategoryDAL ProdCatObj = new ProductCategoryDAL();
                result = ProdCatObj.AddProductCategory(CategoryName);
            }
            catch (Exception)
            {
                result = "Failed";
            }
            return(result);
        }
 public int AddProductCategory(ProductCategory objProductcategory)
 {
     return(objProductcategoryDal.AddProductCategory(objProductcategory));
 }