Esempio n. 1
0
        public JsonResult SaveMotivationSkillsDetails(ApplicantMotivationalSkillBO Data)
        {
            UpdateProfileBAL objUpdateProfileBAL = new UpdateProfileBAL();

            Data.IsActive = true;
            string strResult = objUpdateProfileBAL.SaveorUpdateMotivationSkills(Data, 1);

            return(Json(strResult, JsonRequestBehavior.AllowGet));
        }
Esempio n. 2
0
 public string SaveorUpdateMotivationSkills(ApplicantMotivationalSkillBO objApplicantMotivationalSkillBO, int iUserId)
 {
     return(objUpdateProfileDAL.SaveorUpdateMotivationSkills(objApplicantMotivationalSkillBO, iUserId));
 }