public HelloWorldController(IHelloWorldAppService helloWorldAppService, ILogger <HelloWorldController> log) { _helloWorldAppService = helloWorldAppService; _log = log; }
public HelloWorldFactory(IHelloWorldAppService helloWorldAppService) { _helloWorldAppService = helloWorldAppService; }
public HelloWorldController(IHelloWorldAppService helloWorldService) { _helloWorldService = helloWorldService; }