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