Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created January 3, 2024 12:53
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/d71413f92fcb77299308a146c365793f to your computer and use it in GitHub Desktop.
Save vmussak/d71413f92fcb77299308a146c365793f to your computer and use it in GitHub Desktop.
public class ClienteController : ControllerBase
{
private readonly IEnumerable<IMensagemBoasVindas> _mensagensBoasVindas;
public ClienteController(IEnumerable<IMensagemBoasVindas> mensagensBoasVindas)
{
_mensagensBoasVindas = mensagensBoasVindas;
}
//demais métodos...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment