public SomethingDoer(ISecondDependency secondDependency, ISoAndSoMapper soAndSoMapper)
 {
     m_secondDependency = secondDependency;
     m_soAndSoMapper    = soAndSoMapper;
 }
 public ClassUnderTest(IFirstDependency first, ISecondDependency second)
 {
     this.firstDep  = first;
     this.secondDep = second;
 }
Example #3
0
 public ClassUnderTest(IFirstDependency first, ISecondDependency second)
 {
     this.firstDep = first;
     this.secondDep = second;
 }
Example #4
0
 public MultiDependencyClass(IFirstDependency first, ISecondDependency second)
 {
     _first = first;
     _second = second;
 }
Example #5
0
 public virtual void Configure(IFirstDependency first, ISecondDependency second)
 {
 }
Example #6
0
 public ClassUnderTest(IFirstDependency firstDep, ISecondDependency secondDep)
 {
     _firstDep = firstDep;
     _secondDep = secondDep;
 }
Example #7
0
 public ClassUnderTest(IFirstDependency firstDep, ISecondDependency secondDep)
 {
     _firstDep  = firstDep;
     _secondDep = secondDep;
 }