コード例 #1
0
 public CategoryController(
     ICacheManager cacheManager,
     IReportCategoryAppService categoryappservice
     )
 {
     _CategoryAppService = categoryappservice;
 }
コード例 #2
0
 public TemplateController(
     ICacheManager cacheManager,
     IReportTemplateAppService reporttemplateappservice,
     IReportCategoryAppService categoryappservice
     )
 {
     _ReportTemplateAppService = reporttemplateappservice;
     _CategoryAppService       = categoryappservice;
 }
コード例 #3
0
 public Job_RPTEmailController(
     ICacheManager cacheManager,
     IJob_RPTEmailAppService job_rptemailappservice,
     IJobGroupAppService jobgroupappservice,
     IReportTemplateAppService reporttemplateappservice,
     IReportCategoryAppService categoryappservice
     )
 {
     _Job_RPTEmailAppService   = job_rptemailappservice;
     _JobGroupAppService       = jobgroupappservice;
     _ReportTemplateAppService = reporttemplateappservice;
     _CategoryAppService       = categoryappservice;
 }
コード例 #4
0
 public PreviewerController(
     ICacheManager cacheManager,
     IReportTemplateAppService templateAppService,
     IReportParameterAppService parameterAppService,
     IReportDataSourceAppService dataSourceAppService,
     IReportCategoryAppService categoryAppService
     )
 {
     _TemplateAppService   = templateAppService;
     _ParameterAppService  = parameterAppService;
     _DataSourceAppService = dataSourceAppService;
     _CategoryAppService   = categoryAppService;
 }