public TaxaJurosControllerTest()
 {
     _taxaService         = new TaxaServiceTest();
     _logger              = Mock.Of <ILogger <TaxaJurosController> >();
     _taxaJurosAppService = new TaxaJurosAppService(_taxaService);
     _controller          = new TaxaJurosController(_taxaJurosAppService, _logger);
 }
Beispiel #2
0
 public TaxaJurosController(ITaxaJurosAppService appService)
 {
     _appService = appService;
 }
 public TaxaJurosController(ITaxaJurosAppService taxaJurosAppService, ILogger<TaxaJurosController> logger)
 {
     _taxaJurosAppService = taxaJurosAppService;
     _logger = logger;
 }
Beispiel #4
0
 public TaxaJurosController(ITaxaJurosAppService taxaJurosAppService)
 {
     _taxaJurosAppService = taxaJurosAppService;
 }