示例#1
0
 public JurosService(ITaxaJurosRepository taxaJurosRepository, ICodeRepository codeRepository)
 {
     _taxaJurosRepository = taxaJurosRepository;
     _codeRepository      = codeRepository;
 }
示例#2
0
 public TaxaJurosService(ITaxaJurosRepository repository)
 {
     _repository = repository;
 }
示例#3
0
 public TaxaJurosServices(ITaxaJurosRepository repository, IMemoryCache cache)
 {
     _repository = repository;
     _cache      = cache;
 }
示例#4
0
 public TaxaJurosRepositoryTests()
 {
     _repository = new TaxaJurosRepository();
 }
示例#5
0
 public TaxaJurosService(ITaxaJurosRepository taxaJurosRepository)
 {
     _taxaJurosRepository = taxaJurosRepository;
 }
 public TaxaJurosServiceTests()
 {
     _repository = Substitute.For <ITaxaJurosRepository>();
     _service    = new TaxaJurosService(_repository);
 }
示例#7
0
 public CalculadoraJurosCompostosService(CalculadoraJurosCompostos calculadora, ITaxaJurosRepository taxaJurosRepository)
 {
     _calculadora         = calculadora;
     _taxaJurosRepository = taxaJurosRepository;
 }