public MatchConfigController(IContextSwitcher contextSwitcher, IDataBaseService dataBase)
 {
     this.contextSwitcher = contextSwitcher;
     this.dataBaseService = dataBase;
 }
Exemple #2
0
 public LoginViewModel(IContextSwitcher contextSwitcher, List <string> users)
 {
     this.users           = new ObservableCollection <string>(users);
     this.contextSwitcher = contextSwitcher;
 }
Exemple #3
0
 public ViewModelFactory(IContextSwitcher contextSwitcher, IDataBaseService dataBaseService)
 {
     this.contextSwitcher = contextSwitcher;
     this.dataBaseService = dataBaseService;
 }
 public MenuViewModel(IContextSwitcher contextSwitcher)
 {
     this.contextSwitcher = contextSwitcher;
 }