public ActionResult CreatePublisher(Publisher entity) { var dao = new PublisherDAO(); if (ModelState.IsValid) { //Kiểm tra xem tên NXB dự định tạo đã có chưa if (dao.ExistPublisherForCreate(entity.Name) == false) { string metatitle = CastString.Cast(entity.Name); entity.MetaTitle = metatitle; entity.CreatedDate = DateTime.Now; bool result = dao.CreatePublisher(entity); if (result) { SetAltert("Tạo mới nhà xuất bản thành công", 0); return(RedirectToAction("Index", "Publisher")); } else { SetAltert("Chưa tạo được nhà xuất bản, vui lòng thử lại", 1); } } else { SetAltert("Nhà xuất bản này đã có trong hệ thống", 2); } } return(View(entity)); }