public JsonResult GetAllProfessionByOrganizationID(int OrgID)
        {
            var data = Mapper.Map <PagedProfession>(_educationService.GetAllPagedProfessionByOrganizationID(GlobalConst.Records.Skip, GlobalConst.Records.LandingTake, OrgID));

            return(Json(data));
        }