Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created January 3, 2024 12:46
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/5b27d91acb71bd6933496a74d8d30eab to your computer and use it in GitHub Desktop.
Save vmussak/5b27d91acb71bd6933496a74d8d30eab to your computer and use it in GitHub Desktop.
Construtor com apenas uma instância
public class ClienteController : ControllerBase
{
private readonly IMensagemBoasVindas _mensagemBoasVindas;
public ClienteController(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