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