public QuartelStore( IQuartelRepository repository, ICompanhiaStore companhiaStore) { _repository = repository; _companhiaStore = companhiaStore; }
public BatalhaoController( IBatalhaoStore batalhaoStore, ICompanhiaStore companhiaStore) { _batalhaoStore = batalhaoStore; _companhiaStore = companhiaStore; }
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; }