Esempio n. 1
0
 public CreateFinalResultCommand(IResultFactory resultFactory, IAddResult addResult, IGetMatchById getMatch, IBetController betController)
 {
     this.getMatch      = getMatch;
     this.betController = betController;
     this.resultFactory = resultFactory;
     this.addResult     = addResult;
 }
Esempio n. 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;
 }
 public ShowMatchCommand(IGetMatchById getMatch)
 {
     this.getMatch = getMatch;
 }