Ejemplo n.º 1
0
        public ActionResult GetEducationFormatNotAssociateWithEducation(int educationID)
        {
            EducationFormatViewModel educationFormatViewModel = new EducationFormatViewModel();

            educationFormatViewModel.EducationFormatResults = Mapper.Map <IEnumerable <EducationFormat> >(_educationService.GetEducationFormatNotAssociateWithEducation(educationID));
            return(Json(educationFormatViewModel.EducationFormatResults, GlobalConst.Message.text_html));
        }