コード例 #1
0
 public StartJamCommandHandler(IBoutRunnerService boutRunnerService, IBoutDataService boutDataService)
 {
     _boutRunnerService = boutRunnerService;
     _boutDataService   = boutDataService;
 }
コード例 #2
0
 public BoutController(IBoutDataService boutDataService, IBoutRunnerService boutRunnerService)
 {
     _boutDataService   = boutDataService;
     _boutRunnerService = boutRunnerService;
 }
コード例 #3
0
 public CreatePenaltyCommandHandler(IBoutRunnerService boutRunner, IBoutDataService boutData)
 {
     _boutRunner = boutRunner;
     _boutData   = boutData;
 }
コード例 #4
0
 public UpdatePenaltyCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
コード例 #5
0
 public AddNodeToBoutCommandHandler(IBoutRunnerService boutRunnerService, INodeService nodeService, IBoutDataService boutData)
 {
     _boutRunnerService = boutRunnerService;
     _nodeService       = nodeService;
     _boutData          = boutData;
 }
コード例 #6
0
 public CancelSitCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
コード例 #7
0
 public RunBoutCommandHandler(IBoutRunnerService boutRunnerService, IBoutDataService boutDataService)
 {
     _boutRunnerService = boutRunnerService;
     _boutDataService   = boutDataService;
 }
コード例 #8
0
 public ReleaseSkaterCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
コード例 #9
0
 public SetSkaterPositionCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
コード例 #10
0
 public EndPeriodCommandHandler(IBoutRunnerService boutRunner, IBoutDataService boutData)
 {
     _boutRunner = boutRunner;
     _boutData   = boutData;
 }
コード例 #11
0
ファイル: NodeService.cs プロジェクト: ksalicos/DerbyTracker
 public NodeService(IBoutRunnerService boutRunnerService)
 {
     _boutRunnerService = boutRunnerService;
 }
コード例 #12
0
 public SetLoseOfficialReviewCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
コード例 #13
0
 public CreatePassCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
コード例 #14
0
 public UpdateJammerStatusCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
コード例 #15
0
 public SetTimeoutTypeCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
コード例 #16
0
 public UpdateChairCommandHandler(IBoutRunnerService boutRunner, IBoutDataService boutData)
 {
     _boutRunner = boutRunner;
     _boutData   = boutData;
 }
コード例 #17
0
 public ConnectNodeCommandHandler(INodeService nodeService, IBoutRunnerService boutRunnerService, IBoutDataService boutData)
 {
     _nodeService            = nodeService;
     this._boutRunnerService = boutRunnerService;
     _boutData = boutData;
 }
コード例 #18
0
 public ButtHitSeatCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
コード例 #19
0
 public RemoveSkaterFromJamCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
コード例 #20
0
 public StartTimeoutCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
コード例 #21
0
 public AddSkaterToJamCommandHandler(IBoutDataService boutData, IBoutRunnerService boutRunner)
 {
     _boutData   = boutData;
     _boutRunner = boutRunner;
 }