예제 #1
0
 public AuthenticationService(
     ITotpHelper TotpHelper,
     IAccountRepository AccountRepository,
     IConfiguration Configuration)
 {
     this.TotpHelper        = TotpHelper;
     this.AccountRepository = AccountRepository;
     this.Configuration     = Configuration;
 }
예제 #2
0
 public AccountRepository(IdentityContext Context, ITotpHelper TotpHelper)
 {
     this.Context    = Context;
     this.TotpHelper = TotpHelper;
 }