Skip to content

Instantly share code, notes, and snippets.

@robsonlinhares
Last active April 8, 2020 23:46
Show Gist options
  • Save robsonlinhares/af032a1b79e60f4fb2833e2fc942e241 to your computer and use it in GitHub Desktop.
Save robsonlinhares/af032a1b79e60f4fb2833e2fc942e241 to your computer and use it in GitHub Desktop.
Injeção pelo Construtor
private readonly IServicoPessoa _servicoPessoa;
public PessoaController(IServicoPessoa servicoPessoa)
{
_servicoPessoa = servicoPessoa;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment