public ActionResult GetAllClasses(int exhibitorId)
 {
     _mainResponse = _exhibitorService.GetAllClasses(exhibitorId);
     _jsonString   = Mapper.Convert <GetAllClassesForExhibitor>(_mainResponse);
     return(new OkObjectResult(_jsonString));
 }