예제 #1
0
 public DependencyTestController(TransientClass transientService1, TransientClass transientService2, ScopedService scopedService1, ScopedService scopedService2)
 {
     _transientService1 = transientService1;
     _transientService2 = transientService2;
     _scopedService1    = scopedService1;
     _scopedService2    = scopedService2;
 }
예제 #2
0
        public ValuesController(ScopedClass scoped, TransientClass transient, SingletonClass singleton, ICorrelationContextAccessor correlationContext)

        {
            _scoped             = scoped;
            _transient          = transient;
            _singleton          = singleton;
            _correlationContext = correlationContext;
        }
 public TestActivity(
     SingletonClass singleton,
     ScopedClass scoped,
     TransientClass transient)
 {
     _singleton = singleton;
     _scoped    = scoped;
     _transient = transient;
 }
예제 #4
0
 public Orchestrations(
     SingletonClass singleton,
     ScopedClass scoped,
     TransientClass transient)
 {
     _singleton = singleton;
     _scoped    = scoped;
     _transient = transient;
 }
예제 #5
0
 public DIModel(SingeltonClass singelton, TransientClass transient, ScopedClass scoped)
 {
     Singelton = singelton;
     Transient = transient;
     Scoped    = scoped;
 }