예제 #1
0
 public NestedStartup1(IHostingEnvironment hostingEnvironment, IConfiguration configuration,
                       IGlobalHelloService globalHelloService, IApiDescriptionGroupCollectionProvider apiDescriptionGroupCollectionProvider)
 {
     _hostingEnvironment = hostingEnvironment;
     Configuration       = configuration;
     _globalHelloService = globalHelloService;
     _apiDescriptionGroupCollectionProvider = apiDescriptionGroupCollectionProvider;
 }
예제 #2
0
 public ValuesController(IHelloService helloService, IMediator mediator, IGlobalHelloService globalHelloService)
 {
     _helloService       = helloService;
     _mediator           = mediator;
     _globalHelloService = globalHelloService;
 }
예제 #3
0
 public NestedStartup2(IHostingEnvironment hostingEnvironment, IConfiguration configuration, IGlobalHelloService globalHelloService)
 {
     _hostingEnvironment = hostingEnvironment;
     Configuration       = configuration;
     _globalHelloService = globalHelloService;
 }