public BombeiroFuncaoController(
     IBombeiroFuncaoStore bombeiroFuncaoStore,
     IFuncaoStore funcaoStore)
 {
     _bombeiroFuncaoStore = bombeiroFuncaoStore;
     _funcaoStore         = funcaoStore;
 }
 public FuncaoController(
     IFuncaoStore funcaoStore,
     IEscalaStore escalaStore,
     IBombeiroFuncaoStore bombeiroFuncaoStore,
     IViaturaTipoFuncaoStore viaturaTipoFuncaoStore)
 {
     _funcaoStore            = funcaoStore;
     _escalaStore            = escalaStore;
     _bombeiroFuncaoStore    = bombeiroFuncaoStore;
     _viaturaTipoFuncaoStore = viaturaTipoFuncaoStore;
 }
 public EscalaController(
     IBombeiroStore bombeiroStore,
     IPostoStore postoStore,
     IQuartelStore quartelStore,
     IBombeiroFuncaoStore bombeiroFuncaoStore,
     IFuncaoStore funcaoStore,
     IEscalaStore escalaStore,
     IEscalaTipoStore escalaTipoStore)
 {
     _bombeiroStore       = bombeiroStore;
     _postoStore          = postoStore;
     _quartelStore        = quartelStore;
     _bombeiroFuncaoStore = bombeiroFuncaoStore;
     _funcaoStore         = funcaoStore;
     _escalaStore         = escalaStore;
     _escalaTipoStore     = escalaTipoStore;
 }
 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;
 }
 public DispositivoMinimoController(
     IBombeiroStore bombeiroStore,
     IPostoStore postoStore,
     IQuartelStore quartelStore,
     IBombeiroFuncaoStore bombeiroFuncaoStore,
     IFuncaoStore funcaoStore,
     IEscalaStore escalaStore,
     IEscalaTipoStore escalaTipoStore,
     IViaturaTipoFuncaoStore viaturaTipoFuncaoStore,
     IEscalaTurnoStore escalaTurnoStore)
 {
     _bombeiroStore          = bombeiroStore;
     _postoStore             = postoStore;
     _quartelStore           = quartelStore;
     _bombeiroFuncaoStore    = bombeiroFuncaoStore;
     _funcaoStore            = funcaoStore;
     _escalaStore            = escalaStore;
     _escalaTipoStore        = escalaTipoStore;
     _viaturaTipoFuncaoStore = viaturaTipoFuncaoStore;
     _escalaTurnoStore       = escalaTurnoStore;
 }
Example #6
0
 public BombeiroController(
     UserManager <Bombeiro> userManager,
     RoleManager <IdentityRole> roleManager,
     IBombeiroStore bombeiroStore,
     IPostoStore postoStore,
     IQuartelStore quartelStore,
     IBombeiroFuncaoStore bombeiroFuncaoStore,
     IFuncaoStore funcaoStore,
     IEscalaStore escalaStore,
     IEscalaTipoStore escalaTipoStore)
 {
     _userManager         = userManager;
     _roleManager         = roleManager;
     _bombeiroStore       = bombeiroStore;
     _postoStore          = postoStore;
     _quartelStore        = quartelStore;
     _bombeiroFuncaoStore = bombeiroFuncaoStore;
     _funcaoStore         = funcaoStore;
     _escalaStore         = escalaStore;
     _escalaTipoStore     = escalaTipoStore;
 }