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