Пример #1
0
 public ParameterController(
    ICacheManager cacheManager,
    IReportParameterAppService reportparameterappservice,
    IReportDataSourceAppService reportdatasourceappservice
    )
 {
     _ReportParameterAppService = reportparameterappservice;
     _ReportDataSourceAppService = reportdatasourceappservice;
 }
Пример #2
0
 public PreviewerController(
     ICacheManager cacheManager,
     IReportTemplateAppService templateAppService,
     IReportParameterAppService parameterAppService,
     IReportDataSourceAppService dataSourceAppService,
     IReportCategoryAppService categoryAppService
     )
 {
     _TemplateAppService   = templateAppService;
     _ParameterAppService  = parameterAppService;
     _DataSourceAppService = dataSourceAppService;
     _CategoryAppService   = categoryAppService;
 }