Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created January 2, 2024 14:15
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/488e97fceae9294241a107b0731ac997 to your computer and use it in GitHub Desktop.
Save vmussak/488e97fceae9294241a107b0731ac997 to your computer and use it in GitHub Desktop.
Exemplo de injeção de dependência com .NET
public interface IMensagem
{
string RetornaMensagem(string nome);
}
public class MensagemBoasVindas : IMensagem
{
public string RetornaMensagem(string nome)
{
return $"Olá {nome}, estamos felizes em lhe receber!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment