public ProductController(IProductService ps,IKlantService ks)
 {
     this.ps = ps;
     this.ks = ks;
 }
 public StatsController(IKlantService ks, IProductService ps, IAfspraakService afs)
 {
     this.ks = ks;
     this.ps = ps;
     this.afs = afs;
 }
Exemplo n.º 3
0
 public KlantsController(IUnitOfWork uow, IKlantService klantService, IGebruikerService gebruikerService)
 {
     this.uow = uow;
     this.klantService = klantService;
     this.gebruikerService = gebruikerService;
 }
Exemplo n.º 4
0
 public ProductController(IProductService ps, IKlantService ks)
 {
     this.ps = ps;
     this.ks = ks;
 }
Exemplo n.º 5
0
 public StatsController(IKlantService ks, IProductService ps, IAfspraakService afs)
 {
     this.ks  = ks;
     this.ps  = ps;
     this.afs = afs;
 }
 public AfspraakController(IAfspraakService afs, IKlantService ks)
 {
     this.afs = afs;
     this.ks  = ks;
 }
 public AfspraakController(IAfspraakService afs, IKlantService ks)
 {
     this.afs = afs;
     this.ks = ks;
 }
Exemplo n.º 8
0
 public SettingController(IKlantService ks, IAfspraakService afs)
 {
     this.ks  = ks;
     this.afs = afs;
 }
 public SettingController(IKlantService ks,IAfspraakService afs)
 {
     this.ks = ks;
     this.afs = afs;
 }