public ExternalBusinessLogicRepository(BusinessLogicRepository dependencyLogic)
 {
     _dependencyLogic = dependencyLogic;
 }
 public StructOperationResultTests()
 {
     _testedInstance = new BusinessLogicRepository();
     _outerInstance = new ExternalBusinessLogicRepository(_testedInstance);
 }
 public ExternalBusinessLogicRepository(BusinessLogicRepository dependencyLogic)
 {
     this._dependencyLogic = dependencyLogic;
 }
예제 #4
0
 public StructOperationResultTests()
 {
     this._testedInstance = new BusinessLogicRepository();
     this._outerInstance  = new ExternalBusinessLogicRepository(this._testedInstance);
 }