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