public TaxaDeJurosServiceTest()
 {
     _taxaDeJurosRepository = new Mock <ITaxaDeJurosRepository>();
     _taxaDeJurosService    = new TaxaDeJurosService(_taxaDeJurosRepository.Object, new Mock <ILogger <ITaxaDeJurosService> >().Object);
     _faker             = new Faker();
     _cancellationToken = CancellationToken.None;
 }
 public TaxaDeJurosV2Controller(ITaxaDeJurosService taxaDeJurosService) => _taxaDeJurosService = taxaDeJurosService;
Exemple #3
0
 public CalculoDeJurosService(ITaxaDeJurosService taxaDeJurosService)
 {
     _taxaDeJurosService = taxaDeJurosService;
 }
 public TaxaDeJurosController(ITaxaDeJurosService taxaDeJurosService) =>
Exemple #5
0
 public JurosController(ITaxaDeJurosService taxaDeJurosService)
 {
     _taxaDeJurosService = taxaDeJurosService;
 }