Esempio n. 1
0
 public ExternalLoginModel(
     SignInManager <ApplicationUser> signInManager,
     UserManager <ApplicationUser> userManager,
     IConfiguration configuration,
     IWebHostEnvironment environment,
     IComplianceOfficerRepository repository)
 {
     _signInManager = signInManager;
     _userManager   = userManager;
     _configuration = configuration;
     _environment   = environment;
     _repository    = repository;
 }
Esempio n. 2
0
 public IndexModel(IComplianceOfficerRepository repository) => _repository = repository;