public AuthenticationController(IGebruikerService gebruikerService, AngularContext context)
 {
     _gebruikerService = gebruikerService;
     _context          = context;
 }
 public PollController(ApiContext context, IGebruikerService gebruikerService)
 {
     _context          = context;
     _gebruikerService = gebruikerService;
 }
 public GebruikerController(PollShareContext context, IGebruikerService gebruikerService)
 {
     _context          = context;
     _gebruikerService = gebruikerService;
 }
Exemplo n.º 4
0
 public KlantsController(IUnitOfWork uow, IKlantService klantService, IGebruikerService gebruikerService)
 {
     this.uow = uow;
     this.klantService = klantService;
     this.gebruikerService = gebruikerService;
 }
 public GebruikersController(IUnitOfWork uow, IGebruikerService gebruikerService)
 {
     this.uow = uow;
     this.gebruikerService = gebruikerService;
 }
 public GebruikerController(PollContext context, IGebruikerService gebruikerService, IOptions <AuthMessageSenderOptions> authMessageSenderOptions)
 {
     _context                  = context;
     _gebruikerService         = gebruikerService;
     _authMessageSenderOptions = authMessageSenderOptions.Value;
 }
 public GebruikerKlantsController(IGebruikerKlantService gebruikerKlantService, IGebruikerService gebruikerService)
 {
     this.gebruikerKlantService = gebruikerKlantService;
     this.gebruikerService = gebruikerService;
 }
Exemplo n.º 8
0
 public ManageController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, IGebruikerService gebruikerService)
 {
     UserManager = userManager;
     SignInManager = signInManager;
     this.gebruikerService = gebruikerService;
 }
Exemplo n.º 9
0
 public GebruikerController(IGebruikerService gebruikerService, IMapper mapper)
 {
     this._gebruikerService = gebruikerService;
     this._mapper           = mapper;
 }
Exemplo n.º 10
0
 public GebruikerController(IGebruikerService gebruikerService, ProjectContext projectContext)
 {
     _context          = projectContext;
     _gebruikerService = gebruikerService;
 }
 public UurRegistratiesController(IUurRegistratieService uurRegistratieService, IGebruikerService gebruikerService)
 {
     this.uurRegistratieService = uurRegistratieService;
     this.gebruikerService = gebruikerService;
 }
Exemplo n.º 12
0
 public FactuursController(IFactuurService factuurService, IGebruikerService gebruikerService)
 {            
     this.factuurService = factuurService;
     this.gebruikerService = gebruikerService;
 }