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