예제 #1
0
 public RoosterController(IRoosterRepository repository, InrichtingProvider inrichtingProvider, IATWLog log)
 {
     _repository         = repository;
     _inrichtingProvider = inrichtingProvider;
     _log = log;
 }
예제 #2
0
 public ATWDriver(ATWLogDriver log, InrichtingProvider inrichtingProvider)
 {
     _log = log;
     _inrichtingProvider = inrichtingProvider;
 }
예제 #3
0
 public InrichtingSteps(InrichtingProvider inrichtingProvider)
 {
     _inrichtingProvider = inrichtingProvider;
 }
예제 #4
0
 public Hooks(InrichtingProvider inrichtingProvider)
 {
     _inrichtingProvider = inrichtingProvider;
 }
 public VerplichteRustperiodeRegelSteps(ATWDriver atw, InrichtingProvider inrichtingProvider)
 {
     _atw = atw;
     _inrichtingProvider = inrichtingProvider;
 }
예제 #6
0
 public RoosterSteps(RoosterRepository repository, InrichtingProvider inrichtingProvider, ATWLogDriver log)
 {
     _repository         = repository;
     _inrichtingProvider = inrichtingProvider;
     _controller         = new RoosterController(_repository, _inrichtingProvider, log);
 }
예제 #7
0
 public ATWSteps(ATWDriver atw, ATWLogDriver log, InrichtingProvider inrichtingProvider)
 {
     _atw = atw;
     _log = log;
     _inrichtingProvider = inrichtingProvider;
 }