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