Beispiel #1
0
 public VoorkeurLogic(IVoorkeurContext context)
 {
     VoorkeurRepo = new VoorkeurRepository(context);
 }
Beispiel #2
0
 public VoorkeurController(IVoorkeurContext context)
 {
     _voorkeurLogic = new VoorkeurLogic(context);
 }
Beispiel #3
0
 public VoorkeurRepository(IVoorkeurContext context)
 {
     IvoorkeurContext = context;
 }