public HelloAppFactory(IHelloAppService helloAppService)
 {
     _helloAppService = helloAppService;
 }
Exemple #2
0
 public HelloController(IHelloAppService helloAppService)
 {
     _helloAppService = helloAppService;
 }
Exemple #3
0
 public HelloController(IHelloAppService helloAppService, ILogger <HelloController> log)
 {
     _helloAppService = helloAppService;
     _log             = log;
 }