public RotaController(IRotaRepository rotRepository,
                       ICaminhaoRepository camRepository,
                       ILixeiraRepository lixRepository)
 {
     _rotRepository = rotRepository;
     _camRepository = camRepository;
     _lixRepository = lixRepository;
 }
Esempio n. 2
0
 public LixeiraController(IRotaRepository rotRepository,
                          ILixeiraRepository lixRepository)
 {
     _rotRepository = rotRepository;
     _lixRepository = lixRepository;
 }