Exemplo n.º 1
0
 public Bookmaker(IBettingAccount baseAccount) : base(baseAccount)
 {
     this.baseAccount = baseAccount;
 }
Exemplo n.º 2
0
 public SelectedBookmakerChangedMessage(IBettingAccount bookmaker)
 {
     this.Bookmaker = bookmaker;
 }
Exemplo n.º 3
0
 public BookmakerNameChangedMessage(IBettingAccount account)
 {
     Account = account;
 }
Exemplo n.º 4
0
 public BookmakerAddedMessage(IBettingAccount account)
 {
     Account = account;
 }
Exemplo n.º 5
0
 public PlaceBetViewModel(IBettingAccount account, IRepository repository)
 {
     this.account    = account;
     this.repository = repository;
     CreateBets();
 }