public ActionResult Add(int id, string content)
 {
     try
     {
         if (id == 0)
         {
             headerRepository.Add(content);
         }
         else
         {
             Header footer = new Header();
             footer.ID       = id;
             footer.Contents = content;
             headerRepository.Edit(footer);
         }
         return(Json(new { IsSuccess = true, Message = "Lưu thành công" }, JsonRequestBehavior.AllowGet));
     }
     catch (Exception)
     {
         return(Json(new { IsSuccess = false, Message = "Lưu thất bại" }, JsonRequestBehavior.AllowGet));
     }
 }