public RegisterViewModel(IAuthenticationService authentication, IAppUIService windows)
 {
     _authentication = authentication;
     _windows        = windows;
     SelectedGender  = alien;
     GenderDeclarations.Add(alien);
 }
Esempio n. 2
0
 public MainWindowViewModel(IAuthenticationService authentication, IAppUIService windows, IComponentContext componentContext)
 {
     _windows        = windows;
     _authentication = authentication;
     _authentication.SessionChanged += Authentication_SessionChanged;
     _componentContext = componentContext;
     Init();
 }
 public StartUpService(IAppUIService windows, IAuthenticationService authentication)
 {
     _windows        = windows;
     _authentication = authentication;
 }
 public LoginViewModel(IAuthenticationService authentication, IAppUIService windows)
 {
     _authentication = authentication;
     _windows        = windows;
 }
 public NewRoomViewModel(IAuthenticationService authentication, IAppUIService windows)
 {
     _windows        = windows;
     _authentication = authentication;
 }