Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 2
0
 public void TestInitialize()
 {
     ILoggerFactory logFac = new LoggerFactoryMock();
     cortex = new SimpleCortex(logFac);
 }
Ejemplo n.º 3
0
 public ApiController(ICortex cortex)
 {
     this._cortex = cortex;
 }