public JurosService(ITaxaJurosRepository taxaJurosRepository, ICodeRepository codeRepository) { _taxaJurosRepository = taxaJurosRepository; _codeRepository = codeRepository; }
public TaxaJurosService(ITaxaJurosRepository repository) { _repository = repository; }
public TaxaJurosServices(ITaxaJurosRepository repository, IMemoryCache cache) { _repository = repository; _cache = cache; }
public TaxaJurosRepositoryTests() { _repository = new TaxaJurosRepository(); }
public TaxaJurosService(ITaxaJurosRepository taxaJurosRepository) { _taxaJurosRepository = taxaJurosRepository; }
public TaxaJurosServiceTests() { _repository = Substitute.For <ITaxaJurosRepository>(); _service = new TaxaJurosService(_repository); }
public CalculadoraJurosCompostosService(CalculadoraJurosCompostos calculadora, ITaxaJurosRepository taxaJurosRepository) { _calculadora = calculadora; _taxaJurosRepository = taxaJurosRepository; }