public BombeiroStore(
     IBombeiroRepository repository,
     IPostoRepository postoStore,
     IQuartelRepository quartelStore,
     IEscalaRepository escalaStore)
 {
     _repository   = repository;
     _postoStore   = postoStore;
     _quartelStore = quartelStore;
     _escalaStore  = escalaStore;
 }
 public EscalaStore(
     IEscalaRepository repository,
     IBombeiroStore bombeiroStore,
     IEscalaTurnoStore escalaTurnoStore,
     IBombeiroFuncaoStore bombeiroFuncaoStore,
     IQuartelStore quartelStore,
     IEscalaTipoStore escalaTipoStore,
     IFuncaoStore funcaoStore)
 {
     _repository          = repository;
     _bombeiroStore       = bombeiroStore;
     _escalaTurnoStore    = escalaTurnoStore;
     _bombeiroFuncaoStore = bombeiroFuncaoStore;
     _quartelStore        = quartelStore;
     _escalaTipoStore     = escalaTipoStore;
     _funcaoStore         = funcaoStore;
     //_companhiaRepository = companhiaRepository;
 }
Пример #3
0
 public EscalaService(IEscalaRepository escalaRepository)
 {
     _escalaRepository = escalaRepository;
 }