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