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