예제 #1
0
 public ScenarioController(IScenarioService scenarioService, IScenarioExecutionService executionService, IHatcheryService hatcheryService, IFileUploadService fileUploadService)
 {
     this.scenarioService   = scenarioService;
     this.executionService  = executionService;
     this.hatcheryService   = hatcheryService;
     this.fileUploadService = fileUploadService;
 }
예제 #2
0
 public ScenarioController(IScenarioService scenarioService, IScenarioExecutionService executionService, IHatcheryService hatcheryService, IFileUploadService fileUploadService)
 {
     this.scenarioService = scenarioService;
     this.executionService = executionService;
     this.hatcheryService = hatcheryService;
     this.fileUploadService = fileUploadService;
 }
예제 #3
0
 public ReportController(ISnapshotService snapshotService, IScenarioExecutionService executionService)
 {
     if (snapshotService == null)
     {
         throw new ArgumentException("snapshotService");
     }
     if (executionService == null)
     {
         throw new ArgumentException("executionService");
     }
     this.snapshotService  = snapshotService;
     this.executionService = executionService;
 }
예제 #4
0
 public ReportController(ISnapshotService snapshotService, IScenarioExecutionService executionService)
 {
     if (snapshotService == null)
     {
         throw new ArgumentException("snapshotService");
     }
     if (executionService == null)
     {
         throw new ArgumentException("executionService");
     }
     this.snapshotService = snapshotService;
     this.executionService = executionService;
 }
예제 #5
0
 public RestController(IScenarioExecutionService executionService, ISnapshotService snapshotService)
 {
     this.snapshotService  = snapshotService;
     this.executionService = executionService;
 }
예제 #6
0
 public RestController(IScenarioExecutionService executionService, ISnapshotService snapshotService)
 {
     this.snapshotService = snapshotService;
     this.executionService = executionService;
 }