Ejemplo n.º 1
0
 // Son.Vo - Màn hình cập nhật hồ sơ ứng viên có nhập theo Rank detail hay nhập bằng tay.
 public ActionResult IsInputGeneralCandidateManual()
 {
     var profileServices = new Hre_ProfileServices();
     Boolean ischeck = profileServices.IsInputGeneralCandidateManual();
     if (ischeck == true)
     {
         return Json(true, JsonRequestBehavior.AllowGet);
     }
     else
     {
         return Json(false, JsonRequestBehavior.AllowGet);
     }
 }