예제 #1
0
 public DefaultController(ITransientMessager transient,
                          IScopeMessager scope,
                          ISingleMessager single)
 {
     this.Transient = transient;
     this.Scope     = scope;
     this.Single    = single;
 }
        public Default1Controller(ILogger <DefaultController> logger,
                                  ITransientMessager transient,
                                  IScopeMessager scope,
                                  ISingleMessager single)
        {
            this._logger = logger;

            this.Transient = transient;
            this.Scope     = scope;
            this.Single    = single;
        }
예제 #3
0
 public Worker(ITransientMessager transient, IScopeMessager scope, ISingleMessager single)
 {
     this.Transient = transient;
     this.Scope     = scope;
     this.Single    = single;
 }