public ActionResult UpdatePublisher(Publisher entity)
        {
            var dao = new PublisherDAO();

            if (ModelState.IsValid)
            {
                //Kiểm tra xem tên tác giả để cập nhật đã có trong hệ thống chưa?
                bool exist = dao.ExistPublisherForUpdate(entity.Name, entity.ID);
                if (!exist)
                {
                    string metatitle = CastString.Cast(entity.Name);
                    entity.MetaTitle = metatitle;
                    bool result = dao.UpdatePublisher(entity);
                    if (result)
                    {
                        SetAltert("Cập nhật thông tin nhà xuất bản thành công", 0);
                        return(RedirectToAction("Index", "Publisher"));
                    }
                    else
                    {
                        SetAltert("Chưa cập nhật được, vui lòng thử lại", 2);
                    }
                }
                else
                {
                    SetAltert("Nhà xuất bản này đã có trong hệ thống, vui lòng chọn nhà xuất bản khác", 2);
                }
            }
            return(View(entity));
        }