コード例 #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
ファイル: ScenarioController.cs プロジェクト: bevacqua/Swarm
 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
ファイル: ReportController.cs プロジェクト: bevacqua/Swarm
 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
ファイル: RestController.cs プロジェクト: bevacqua/Swarm
 public RestController(IScenarioExecutionService executionService, ISnapshotService snapshotService)
 {
     this.snapshotService = snapshotService;
     this.executionService = executionService;
 }