public ActionResult Sua(QuangCao qc)
 {
     SetViewBag();
     if (ModelState.IsValid)
     {
         var dao    = new QuangCaoDAO();
         var result = dao.Sua(qc);
         if (result)
         {
             SetAlert("Cập nhật quảng cáo " + qc.Id + " thành công", "success");
             logger.Info("Thêm mới quảng cáo " + qc.Id + " thành công!");
             if (Session["returnUrl"] == null)
             {
                 return(Redirect("/Admin/Home/Index"));
             }
             else
             {
                 return(Redirect(Session["returnUrl"].ToString()));
             }
         }
         else
         {
             SetAlert("Cập nhật quảng cáo " + qc.Id + " không thành công", "error");
             logger.Error("Cập nhật quảng cáo " + qc.Id + " không thành công!");
             ModelState.AddModelError("", "Cập nhật không thành công");
         }
     }
     return(View());
 }