Exemple #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;
 }
Exemple #2
0
 public CsvFileProvider(IBetFactory <T> betFactory)
 {
     _betFactory = betFactory;
 }
 public MainWindowVM()
 {
     _interactor = new Interactor();
     _betFactory = _interactor.CreateBetFactory();
 }