Ejemplo n.º 1
0
 public TKBDController(IInterestRateService interestRateService, IApplicationUserService userService, IDistrictService districtService, IPOService poService, IErrorService errorService, ITKBDService tkbdService, ITKBDHistoryService tkbdHistoryService, IApplicationUserService applicationUserService) : base(errorService)
 {
     this._tkbdService        = tkbdService;
     this._tkbdHistoryService = tkbdHistoryService;
     _applicationUserService  = applicationUserService;
     _districtService         = districtService;
     _poService           = poService;
     _userService         = userService;
     _interestRateService = interestRateService;
 }
Ejemplo n.º 2
0
 public AgreementsController(
     IRepositoryWrapper repoWrapper,
     ITokenService tokenService,
     IViliborClient viliborClient,
     ILogger <AgreementsController> logger,
     ICacheService cache,
     IResponseBuildService responseService,
     IInterestRateService interestService
     )
 {
     _repoWrapper     = repoWrapper;
     _tokenService    = tokenService;
     _viliborClient   = viliborClient;
     _logger          = logger;
     _cache           = cache;
     _responseService = responseService;
     _interestService = interestService;
 }
 public InterestCalculationController(IInterestRateService interestRateService) => _interestRateService = interestRateService;
 public InterestRateController(IInterestRateService interestRateService)
 {
     this.interestRateService = interestRateService;
 }
 public InterestRateServiceTest()
 {
     _baseRateRepository = new Mock <IBaseRateRepository>();
     _sut = new InterestRateService(_baseRateRepository.Object);
 }
Ejemplo n.º 6
0
 public CompoundCalculatorService(IInterestRateService interestRateService)
 {
     this.interestRateService = interestRateService;
 }
 public void Setup()
 {
     _interestRateService = new InterestRateServiceFake();
 }
Ejemplo n.º 8
0
 public InterestCalculationService(IInterestRateService interestRateService) =>