コード例 #1
0
        public ActionResult CheckProductCategoryExist(ProductCategoryViewModel productCategoryVM)
        {
            bool exists = productCategoryVM.IsUpdate ? false : _productCategoryBusiness.CheckProductCategoryExist(Mapper.Map <ProductCategoryViewModel, ProductCategory>(productCategoryVM));

            if (exists)
            {
                return(Json("<p><span style='vertical-align: 2px'>Product Category is already in use </span> <i class='fa fa-times' style='font-size:19px; color: red'></i></p>", JsonRequestBehavior.AllowGet));
            }
            //var result = new { success = true, message = "Success" };
            return(Json(true, JsonRequestBehavior.AllowGet));
        }