public Controller(ITaskSet taskSet, ISleep sleep, IStop stop, ILog log)
 {
     this.config = config;
     this.taskSet = taskSet;
     this.sleep = sleep;
     this.stop = stop;
     this.log = log;
 }
 public Controller(HostConfiguration config, ILog log)
 {
     this.config = config;
     this.log = log;
 }