Exemple #1
0
 public PromptService(
     IBaseReportParameterService baseReportParameterService,
     IBaseReportInterpreter <PromptInfo> baseReportInterpreter)
 {
     _baseReportInterpreter      = baseReportInterpreter;
     _baseReportParameterService = baseReportParameterService;
 }
 public PromptSelectionService(
     IBaseReportParameterService parameterService
     , ISelectionParameterValueBuilder selectionParameterValueBuilder)
 {
     _selectionParameterValueBuilder = selectionParameterValueBuilder;
     _parameterService = parameterService;
 }
Exemple #3
0
 public PromptInfoService(IBaseReportParameterService baseReportParameterService, IBaseReportInterpreter<PromptInfo> baseReportInterpreter)
 {
     _baseReportParameterService = baseReportParameterService;
     _baseReportInterpreter = baseReportInterpreter;
 }