Example #1
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;
 }
Example #2
0
 //public ShowLineCommand(IGetLineById getLine)
 public ShowLineCommand(IGetLineByName getLine)
 {
     this.getLine = getLine;
 }
Example #3
0
 public CheckNextBetCommand(IGetLineByName getLine)
 {
     this.getLine = getLine;
 }
 public ChangeLineStepCommand(IGetLineByName getLine)
 {
     this.getLine = getLine;
 }