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