Ejemplo n.º 1
0
 public AccountManager(ConnectionManager connectionManager, 
     IDeviceInfo deviceInfo,
     ProfileServiceProxy profileServiceProxy,
     AuthenticationServiceProxy authenticationServiceProxy,
     RegistrationServiceProxy registrationServiceProxy, 
     IStorage storage) : base(connectionManager)
 {
     _deviceInfo = deviceInfo;
     _profileServiceProxy = profileServiceProxy;
     _authenticationServiceProxy = authenticationServiceProxy;
     _registrationServiceProxy = registrationServiceProxy;
     _storage = storage;
 }
Ejemplo n.º 2
0
 public LoginViewModel(AuthenticationServiceProxy authenticationService)
 {
     _authenticationService = authenticationService;
     _deviceInfo = null;
 }