public PrototypeUnitTest()
 {
     dataAccess         = A.Fake <IPrototypeDataAccess>();
     this.prototypeCore = new PrototypeCore(dataAccess);
     controller         = new PrototypeController(prototypeCore);
 }
예제 #2
0
 public PrototypeCore(IPrototypeDataAccess dataAccess)
 {
     this.dataAccess = dataAccess;
 }