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