Skip to content

Instantly share code, notes, and snippets.

View robsonlinhares's full-sized avatar

Robson Linhares robsonlinhares

View GitHub Profile
@robsonlinhares
robsonlinhares / InjecaoPeloConstrutor
Last active April 8, 2020 23:46
Injeção pelo Construtor
private readonly IServicoPessoa _servicoPessoa;
public PessoaController(IServicoPessoa servicoPessoa)
{
_servicoPessoa = servicoPessoa;
}