Exemplo n.º 1
0
 public SplashScreenViewModel(
     IApplicationContext applicationContext,
     IAccessTokenManager accessTokenManager,
     IAccountStorageService dataStorageService)
 {
     this.applicationContext = applicationContext;
     this.accessTokenManager = accessTokenManager;
     this.dataStorageService = dataStorageService;
 }
Exemplo n.º 2
0
 public AccountService(
     IHostDialogService dialog,
     IApplicationContext applicationContext,
     ISessionAppService sessionAppService,
     IAccessTokenManager accessTokenManager,
     IAccountStorageService dataStorageService,
     AbpAuthenticateModel authenticateModel)
 {
     this.dialog             = dialog;
     this.applicationContext = applicationContext;
     this.sessionAppService  = sessionAppService;
     this.accessTokenManager = accessTokenManager;
     this.dataStorageService = dataStorageService;
     this.AuthenticateModel  = authenticateModel;
 }