public Simulacre(IEar ear, IMouth mouth, ICortex cortex, INerve nerve, ILoggerFactory logFac) { this.ear = ear; this.mouth = mouth; this.cortex = cortex; this.logger = logFac.GetLogger(this.GetType()); this.nerve = nerve; }
public void TestInitialize() { ILoggerFactory logFac = new LoggerFactoryMock(); cortex = new SimpleCortex(logFac); }
public ApiController(ICortex cortex) { this._cortex = cortex; }