Example #1
0
        //public string GetSubcategory()
        //{
        //    ProductAdminBLL bll = new ProductAdminBLL();
        //    string str = bll.GetSubcategory();
        //    return str;

        //}

        public string EnterProduct(string image, string product, string SubCategoryId, string BrandID)
        {
            string[] images = image.Split('\\');
            image = images[2];


            ProductAdminBLL bll = new ProductAdminBLL();
            string str = bll.EnterProduct(image, product, SubCategoryId, BrandID);
            return str;


        }