Exemplo n.º 1
0
 public TermoService(
     ITermoRepository termoRepository)
 {
     _termoRepository = termoRepository;
 }
Exemplo n.º 2
0
 public TermoController(IConfiguration configuration, ITermoRepository termoRepository)
 {
     _termoRepository = termoRepository;
 }
Exemplo n.º 3
0
 public TermoController()
 {
     _termoRepository = new TermoRepository();
 }