public TremCarregamentoController(ITremCarregamentoRepository tremCarregamentoRepository,
                                   IComposicaoTremRepository composicaoTremRepository,
                                   ITremCarregamentoServices tremCarregamentoServices)
 {
     _tremCarregamentoRepository = tremCarregamentoRepository;
     _composicaoTremRepository   = composicaoTremRepository;
     _tremCarregamentoServices   = tremCarregamentoServices;
 }
 public TremCarregamentoServices(ITremCarregamentoRepository tremCarregamentoRepository)
 {
     _tremCarregamentoRepository = tremCarregamentoRepository;
 }