Example #1
0
 public LoanController(XBService xbService, ContractManager contractManager, XBInfoService xbInfoService, CacheHelper cacheHelper)
 {
     _xbService       = xbService;
     _xbInfoService   = xbInfoService;
     _contractManager = contractManager;
     _cacheHelper     = cacheHelper;
 }
 public ContractManager(XBService xBService, XBInfoService xBInfoService, ContractService contractService, CacheHelper cacheHelper)
 {
     _xBService       = xBService;
     _xBInfoService   = xBInfoService;
     _contractService = contractService;
     _cacheHelper     = cacheHelper;
 }
 public CreditLineController(XBService xbService, XBInfoService xbInfoService, CacheHelper cacheHelper, IConfiguration config)
 {
     _xbService     = xbService;
     _xbInfoService = xbInfoService;
     _cacheHelper   = cacheHelper;
     _config        = config;
 }
 public CoreBankingUtilities(IHttpContextAccessor httpContextAccessor, IConfiguration configuration, XBService xBService, XBInfoService xBInfoService)
 {
     _httpContextAccessor = httpContextAccessor;
     _config        = configuration;
     _xBInfoService = xBInfoService;
     _xBService     = xBService;
 }
Example #5
0
 public CardController(XBService xbService, CacheHelper cacheHelper, XBInfoService xBInfoService, IConfiguration config, IStringLocalizer <SharedResource> localizer)
 {
     _xbService     = xbService;
     _cacheHelper   = cacheHelper;
     _xBInfoService = xBInfoService;
     _config        = config;
     _localizer     = localizer;
 }
Example #6
0
 public HBApplicationController(XBService xBService, XBInfoService xBInfoService, CacheHelper cacheHelper, XBSecurityService xBSecurity, SMSMessagingService sMSMessagingService, CacheManager cache, IConfiguration config)
 {
     _xBService           = xBService;
     _xBInfoService       = xBInfoService;
     _cacheHelper         = cacheHelper;
     _xbSecurity          = xBSecurity;
     _smsMessagingService = sMSMessagingService;
     _cache  = cache;
     _config = config;
 }
 /// <summary>
 /// Ինիցիալացնում է ֆիզիկական անձի գրանցման համար անհրաժեշտ տվյալները։
 /// </summary>
 /// <param name="regParams"></param>
 public CustomerRegistrationManager(ACBAOperationService acbaOperationService, XBService xbService, XBManagementService xbManagementService, SMSMessagingService smsMessagingService, XBInfoService xbInfoService, OnlineBankingRegistrationManager onlineBankingRegistrationManager, CacheManager cache, CacheHelper cacheHelper, IConfiguration config)
 {
     _acbaOperationService             = acbaOperationService;
     _xbService                        = xbService;
     _xbManagementService              = xbManagementService;
     _smsMessagingService              = smsMessagingService;
     _xbInfoService                    = xbInfoService;
     _onlineBankingRegistrationManager = onlineBankingRegistrationManager;
     _cache       = cache;
     _cacheHelper = cacheHelper;
     _config      = config;
 }
 public ReportManager(XBService xBService, ReportService reportService, CacheHelper cacheHelper, IConfiguration config, XBInfoService xBInfoService)
 {
     _xBService     = xBService;
     _reportService = reportService;
     _cacheHelper   = cacheHelper;
     _config        = config;
     _xBInfoService = xBInfoService;
     if (Convert.ToBoolean(_config["TestVersion"]))
     {
         _reportName = "ACBAReportsTeam1";
     }
     else
     {
         _reportName = "ACBAReports";
     }
 }
 public OnlineBankingRegistrationManager(XBManagementService xbManagementService, XBService xbService, XBInfoService xbInfoService)
 {
     _xbManagementService = xbManagementService;
     _xbService           = xbService;
 }