public CompanhiaStore(
     ICompanhiaRepository repository,
     IBatalhaoStore batalhaoStore)
 {
     _repository    = repository;
     _batalhaoStore = batalhaoStore;
 }
Exemplo n.º 2
0
 public BatalhaoController(
     IBatalhaoStore batalhaoStore,
     ICompanhiaStore companhiaStore)
 {
     _batalhaoStore  = batalhaoStore;
     _companhiaStore = companhiaStore;
 }
Exemplo n.º 3
0
 public CompanhiaController(
     ICompanhiaStore companhiaStore,
     IBatalhaoStore batalhaoStore,
     IQuartelStore quartelStore)
 {
     _companhiaStore = companhiaStore;
     _batalhaoStore  = batalhaoStore;
     _quartelStore   = quartelStore;
 }
 public QuartelController(
     ICompanhiaStore companhiaStore,
     IEscalaStore escalaStore,
     IQuartelStore quartelStore,
     IQuartelViaturaStore quartelViaturaStore,
     IViaturaStore viaturaStore,
     IBatalhaoStore batalhaoStore,
     IViaturaTipoFuncaoStore viaturaTipoFuncaoStore,
     IBombeiroStore bombeiroStore)
 {
     _companhiaStore         = companhiaStore;
     _escalaStore            = escalaStore;
     _quartelStore           = quartelStore;
     _quartelViaturaStore    = quartelViaturaStore;
     _viaturaStore           = viaturaStore;
     _batalhaoStore          = batalhaoStore;
     _viaturaTipoFuncaoStore = viaturaTipoFuncaoStore;
     _bombeiroStore          = bombeiroStore;
 }