예제 #1
0
 public CreateFinalResultCommand(IResultFactory resultFactory, IAddResult addResult, IGetMatchById getMatch, IBetController betController)
 {
     this.getMatch      = getMatch;
     this.betController = betController;
     this.resultFactory = resultFactory;
     this.addResult     = addResult;
 }
예제 #2
0
 public CreateBetCommand(IBetFactory betFactory, IAddBet addBet, IGetMatchById getMatch, IGetLineByName getLine, IGetTipsterById getTipster)
 {
     this.betFactory = betFactory;
     this.addBet     = addBet;
     this.getMatch   = getMatch;
     this.getLine    = getLine;
     this.getTipster = getTipster;
 }
예제 #3
0
 public ShowMatchCommand(IGetMatchById getMatch)
 {
     this.getMatch = getMatch;
 }