Beispiel #1
0
 public ClientScoped(IDep dep, IServ serv)
 {
     Dep  = dep;
     Serv = serv;
 }
 public Holder(IDep dep)
 {
 }
Beispiel #3
0
 public Test12(IDep dep)
 {
 }
Beispiel #4
0
 public ServiceB(IResolver r, IDep d)
 {
     R = r;
     D = d;
 }
 public TestObj(IDep dep, IDep2 dep2, string sDep)
 {
     this.Dep  = dep;
     this.Dep2 = dep2;
     this.SDep = sDep;
 }
 public Derived(IDep dep) : base(dep)
 {
     this.dep = dep;
 }
 public TestObj(IDep dep)
 {
     this.Dep = dep;
 }
Beispiel #8
0
 public Root(IDep dep)
 {
     this.dep = dep;
 }
Beispiel #9
0
 class InterfaceDep { public InterfaceDep(IDep id)
                      {
                      }
 public SUT(IDep dep)
 {
     this.dep = dep;
 }
 public void Initialize(IDep dep)
 {
     this.dep = dep;
 }
 public Owner2(IDep dep)
 {
     Dep = dep;
 }
 public Root(IDep dep)
 {
     this.dep = dep;
 }
 public UnitOfWork(IDep d) => Dep = d;
 public TestObj(IDep dep, IDep2 dep2)
 {
     this.Dep  = dep;
     this.Dep2 = dep2;
 }
Beispiel #16
0
 public ModuleWithConstructorInjection(IDep dep)
 {
     Dependency = dep;
 }
Beispiel #17
0
 public Client(IDep dep)
 {
     _dep = dep;
 }