Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created January 3, 2024 13:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vmussak/a9a914aae48cd05038b64ef0a9606c3e to your computer and use it in GitHub Desktop.
Save vmussak/a9a914aae48cd05038b64ef0a9606c3e to your computer and use it in GitHub Desktop.
public class ClienteController : ControllerBase
{
private readonly IMensagemBoasVindas _mensagemBoasVindas;
public ClienteController([FromKeyedServices("Padrao")] IMensagemBoasVindas mensagemBoasVindas)
{
_mensagemBoasVindas = mensagemBoasVindas;
}
//demais métodos...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment