public MvcController(IInjectedService injectedService, IAnotherInjectedService anotherInjectedService, RequestModel requestModel)
     : this(injectedService, anotherInjectedService)
 {
     this.InjectedRequestModel = requestModel;
 }
Exemple #2
0
 public RouteController(IInjectedService injectedService, IAnotherInjectedService anotherService)
 {
 }
 public FullPocoController(IInjectedService injectedService, IAnotherInjectedService anotherInjectedService, RequestModel requestModel)
     : this(injectedService, anotherInjectedService)
 {
     this.InjectedRequestModel = requestModel;
 }
 public MvcController(IInjectedService injectedService, IAnotherInjectedService anotherInjectedService)
     : this(injectedService)
 {
     this.AnotherInjectedService = anotherInjectedService;
 }
 public WebApiController(IInjectedService injectedService, IAnotherInjectedService anotherInjectedService)
     : this(injectedService)
 {
     this.AnotherInjectedService = anotherInjectedService;
 }
 public FullPocoController(IInjectedService injectedService, IAnotherInjectedService anotherInjectedService)
     : this(injectedService)
 {
     this.AnotherInjectedService = anotherInjectedService;
 }
 public MultipleServicesComponent(IInjectedService injectedService, IAnotherInjectedService anotherService)
 {
     this.InjectedService = injectedService;
     this.AnotherService = anotherService;
 }
 public RouteController(IInjectedService injectedService, IAnotherInjectedService anotherService)
 {
 }
 public MultipleServicesComponent(IInjectedService injectedService, IAnotherInjectedService anotherService)
 {
     this.InjectedService = injectedService;
     this.AnotherService  = anotherService;
 }
Exemple #10
0
 public NoParameterlessConstructorController(IInjectedService service, IAnotherInjectedService anotherService)
 {
     this.Service = service;
     this.AnotherInjectedService = anotherService;
 }
 public NoParameterlessConstructorController(IInjectedService service, IAnotherInjectedService anotherService)
 {
     this.Service = service;
     this.AnotherInjectedService = anotherService;
 }