public ReportSession GetReportSession(string userId, string reportId)
 {
     return(ReportEngineApplication.GetReportSession(userId, reportId));
 }
 public void CloseReportSession(string userId, string reportId)
 {
     ReportEngineApplication.CloseReportSession(userId, reportId);
 }
 public List <ReportSession> GetReportSessionList()
 {
     return(ReportEngineApplication.GetReportSessionList());
 }