示例#1
0
 public AuthenticationService(
     AuthMobileServiceClient mobileServiceClient,
     IAccountStoreService accountStoreService,
     string customLoginControllerName)
 {
     _mobileServiceClient       = mobileServiceClient;
     _accountStoreService       = accountStoreService;
     _customLoginControllerName = customLoginControllerName;
 }
示例#2
0
 public ProviderLoginService(
     Context context,
     AuthMobileServiceClient mobileServiceClient,
     IAccountStoreService accountStoreService,
     string uriScheme)
 {
     _mobileServiceClient = mobileServiceClient;
     _context             = context;
     _accountStoreService = accountStoreService;
     _uriScheme           = uriScheme;
 }
示例#3
0
 public FirebaseAuthService(IAccountStoreService accountStoreService)
 {
     _accountStoreService = accountStoreService;
 }