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