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