public ActionResult CreateProductCategory(ProductCategory model)
 {
     if (ModelState.IsValid)
     {
         //Kiểm tra xem tên loại sản phẩm đã có chư
         var  dao    = new ProductCategoryDAO();
         bool exsits = dao.ProductCategoryExist(model.Name);
         if (!exsits)
         {
             UserLogin userlogin = (UserLogin)Session["USER_SESSION"];
             model.CreatedBy   = userlogin.UserName;
             model.CreatedDate = DateTime.Now;
             string metatitle = CastString.Cast(model.Name);
             model.MetaTitle = metatitle;
             bool result = dao.CreateProductCategory(model);
             if (result)
             {
                 return(RedirectToAction("Index", "ProductCategory"));
             }
             else
             {
                 ModelState.AddModelError("CreateProdCategoryError", "Tạo mới không thành công");
             }
         }
         else
         {
             //trường hợp tên đã có
             ModelState.AddModelError("CreateProdCategoryError", "Tên loại sản phẩm này đã có");
         }
     }
     else
     {
     }
     return(View(model));
 }