public string TestIterfaceDependency()
 {
     return(DependencyInterface.Info("Interface Dependency"));
 }
Example #2
0
 public TestClass(DependencyInterface dependency, OtherDependencyInterface otherDependencyInterface)
 {
     this.dependency = dependency;
     this.otherDependencyInterface = otherDependencyInterface;
 }