Exemplo n.º 1
0
 public void DoSomeWork()
 {
     //Run program structure from here.
     _logger.LogInformation("Doing Work");
     _injectedService.ExampleLogging("Starting Injected Service");
     _nestedService.ExampleLogging("Logging from Nested Service");
 }
Exemplo n.º 2
0
 public void ExampleLogging(string message)
 {
     _nestedService.ExampleLogging(message);
 }