public Bookmaker(IBettingAccount baseAccount) : base(baseAccount) { this.baseAccount = baseAccount; }
public SelectedBookmakerChangedMessage(IBettingAccount bookmaker) { this.Bookmaker = bookmaker; }
public BookmakerNameChangedMessage(IBettingAccount account) { Account = account; }
public BookmakerAddedMessage(IBettingAccount account) { Account = account; }
public PlaceBetViewModel(IBettingAccount account, IRepository repository) { this.account = account; this.repository = repository; CreateBets(); }