Esempio n. 1
0
 public HelloWorldController(IHelloWorldAppService helloWorldAppService, ILogger <HelloWorldController> log)
 {
     _helloWorldAppService = helloWorldAppService;
     _log = log;
 }
Esempio n. 2
0
 public HelloWorldFactory(IHelloWorldAppService helloWorldAppService)
 {
     _helloWorldAppService = helloWorldAppService;
 }
Esempio n. 3
0
 public HelloWorldController(IHelloWorldAppService helloWorldService)
 {
     _helloWorldService = helloWorldService;
 }