public JsonResult GetAllAccreeditor()
        {
            IEnumerable <Accreditor> AccreditorRecords = Mapper.Map <IEnumerable <Accreditor> >(_educationService.getAll());

            return(Json(AccreditorRecords, GlobalConst.Message.text_html));
        }