public ClassUnderTest(IFirstDependency first, ISecondDependency second)
 {
     this.firstDep  = first;
     this.secondDep = second;
 }
Example #2
0
 public MultiDependencyClass(IFirstDependency first, ISecondDependency second)
 {
     _first = first;
     _second = second;
 }
Example #3
0
 public ClassUnderTest(IFirstDependency first, ISecondDependency second)
 {
     this.firstDep = first;
     this.secondDep = second;
 }
Example #4
0
 public FourthBootstrapper(IFirstDependency dependency)
 {
 }
Example #5
0
 public virtual void Configure(IFirstDependency first, ISecondDependency second)
 {
 }
Example #6
0
 public SingleDependencyClass(IFirstDependency first)
 {
     _first = first;
 }
Example #7
0
 public ClassUnderTest(IFirstDependency firstDep, ISecondDependency secondDep)
 {
     _firstDep = firstDep;
     _secondDep = secondDep;
 }
Example #8
0
 public ClassUnderTest(IFirstDependency firstDep, ISecondDependency secondDep)
 {
     _firstDep  = firstDep;
     _secondDep = secondDep;
 }