示例#1
0
 public async Task <ResponseBase <List <SchedulerList> > > SchedulerNames()
 {
     return(await ReportService.SchedulerNames(new TeamHttpContext(HttpContext)).ConfigureAwait(false));
 }
示例#2
0
 public async Task <ResponseBase <SchedulerAddUpdate> > EditSchedulerAsync(int editschedulerId)
 {
     return(await ReportService.EditSchedulerAsync(new TeamHttpContext(HttpContext), editschedulerId).ConfigureAwait(false));
 }
示例#3
0
 public async Task <ResponseBase> AddUpdateSchedulerAsync([FromBody] SchedulerAddUpdate scheduler)
 {
     return(await ReportService.AddUpdateSchedulerAsync(new TeamHttpContext(HttpContext), scheduler).ConfigureAwait(false));
 }
示例#4
0
 public async Task <FileStreamResult> DownloadAsync(int reportId)
 {
     return(await ReportService.DownloadAsync(new TeamHttpContext(HttpContext), reportId).ConfigureAwait(false));
 }
示例#5
0
 public async Task <ResponseBase> AddEditReport([FromBody] ReportConfigAddEdit report)
 {
     return(await ReportService.AddEditReport(new TeamHttpContext(HttpContext), report).ConfigureAwait(false));
 }
示例#6
0
 public async Task <ResponseBase <ReportConfigAddEdit> > EditReport(int reportId)
 {
     return(await ReportService.EditReport(new TeamHttpContext(HttpContext), reportId).ConfigureAwait(false));
 }
示例#7
0
 public async Task <ResponseBase <List <ReportGrid> > > ViewReport(int reportId)
 {
     return(await ReportService.ViewReport(new TeamHttpContext(HttpContext), reportId).ConfigureAwait(false));
 }