Exemplo n.º 1
0
 public AccountController(ApplicationSignInManager signInManager,
                          ApplicationUserManager userManager,
                          IGebruikerRepository gebruikerRepo,
                          IHoGentApiLookupProvider hoGentApiLookupProvider)
     : this(gebruikerRepo, hoGentApiLookupProvider)
 {
     SignInManager = signInManager;
     UserManager   = userManager;
 }
Exemplo n.º 2
0
 public AccountController(IGebruikerRepository gebruikerRepo, IHoGentApiLookupProvider hoGentApiLookupProvider)
 {
     this.gebruikerRepo           = gebruikerRepo;
     this.hoGentApiLookupProvider = hoGentApiLookupProvider;
 }