public InvestimentosServices(ILciRepository lcis, IFundosRepository fundos, ITesouroDiretoRepository tds, IDistributedCache distributedCache) { _lcis = lcis; _fundos = fundos; _tds = tds; _distributedCache = distributedCache; }
public FundosService(IFundosRepository fundosRepository) : base(fundosRepository) { _fundosRepository = fundosRepository; }
public FundosController(IFundosRepository repository) { this.repository = repository; }