Esempio n. 1
0
 public StartJamCommandHandler(IBoutRunnerService boutRunnerService, IBoutDataService boutDataService)
 {
     _boutRunnerService = boutRunnerService;
     _boutDataService   = boutDataService;
 }
Esempio n. 2
0
 public BoutController(IBoutDataService boutDataService, IBoutRunnerService boutRunnerService)
 {
     _boutDataService   = boutDataService;
     _boutRunnerService = boutRunnerService;
 }
 public CreatePenaltyCommandHandler(IBoutRunnerService boutRunner, IBoutDataService boutData)
 {
     _boutRunner = boutRunner;
     _boutData   = boutData;
 }
 public UpdatePenaltyCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
 public AddNodeToBoutCommandHandler(IBoutRunnerService boutRunnerService, INodeService nodeService, IBoutDataService boutData)
 {
     _boutRunnerService = boutRunnerService;
     _nodeService       = nodeService;
     _boutData          = boutData;
 }
 public CancelSitCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
 public RunBoutCommandHandler(IBoutRunnerService boutRunnerService, IBoutDataService boutDataService)
 {
     _boutRunnerService = boutRunnerService;
     _boutDataService   = boutDataService;
 }
 public ReleaseSkaterCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
 public SetSkaterPositionCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
 public EndPeriodCommandHandler(IBoutRunnerService boutRunner, IBoutDataService boutData)
 {
     _boutRunner = boutRunner;
     _boutData   = boutData;
 }
Esempio n. 11
0
 public NodeService(IBoutRunnerService boutRunnerService)
 {
     _boutRunnerService = boutRunnerService;
 }
 public SetLoseOfficialReviewCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
Esempio n. 13
0
 public CreatePassCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
 public UpdateJammerStatusCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
 public SetTimeoutTypeCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
Esempio n. 16
0
 public UpdateChairCommandHandler(IBoutRunnerService boutRunner, IBoutDataService boutData)
 {
     _boutRunner = boutRunner;
     _boutData   = boutData;
 }
 public ConnectNodeCommandHandler(INodeService nodeService, IBoutRunnerService boutRunnerService, IBoutDataService boutData)
 {
     _nodeService            = nodeService;
     this._boutRunnerService = boutRunnerService;
     _boutData = boutData;
 }
 public ButtHitSeatCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
Esempio n. 19
0
 public RemoveSkaterFromJamCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
 public StartTimeoutCommandHandler(IBoutRunnerService boutRunner)
 {
     _boutRunner = boutRunner;
 }
 public AddSkaterToJamCommandHandler(IBoutDataService boutData, IBoutRunnerService boutRunner)
 {
     _boutData   = boutData;
     _boutRunner = boutRunner;
 }