Esempio n. 1
0
 // Son.Vo - Màn hình tạo mới ứng viên có hiển thị field mã NV KH hay không.
 public ActionResult IsUseCodeEmpOfCustomer()
 {
     var profileServices = new Hre_ProfileServices();
     Boolean ischeck = profileServices.IsUseCodeEmpOfCustomer();
     if (ischeck == true)
     {
         return Json(true, JsonRequestBehavior.AllowGet);
     }
     else
     {
         return Json(false, JsonRequestBehavior.AllowGet);
     }
 }