public ActionResult <string> Post(RequestDto input, IGoodbyeService svc)
 => svc.SayGoodbye() + " " + input.Name;
Ejemplo n.º 2
0
 public ActionResult <string> Byte([FromBody] Request request, IGoodbyeService service) =>
 $"{service.SayGoodBye()} {request.Name}";