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