public string Index(string name)
 {
     _logger.LogInformation("Index called");
     return(_helloService.Greet(name).ToUpper());
 }
 public string Index(string name)
 {
     return _helloService.Greet(name).ToUpper();
 }