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