public ActionResult <string> Get([FromServices] IGreeting greeting, string name)
 {
     return(greeting.Hello(name));
 }