public PaymentService(ICardDao cardDao, ICurrencyDao currencyDao, IPaymentRequestDao paymentRequestDao,
                       IMerchantDao merchantDao, IAcquiringBankService acquiringBankService,
                       IBankPaymentResponseDao bankPaymentResponseDao)
 {
     _cardDao                = cardDao;
     _currencyDao            = currencyDao;
     _paymentRequestDao      = paymentRequestDao;
     _merchantDao            = merchantDao;
     _acquiringBankService   = acquiringBankService;
     _bankPaymentResponseDao = bankPaymentResponseDao;
     _encryptionKey          = ConfigurationManager.AppSettings["EncryptionKey"];
 }
Пример #2
0
 public ExchangeController(IExchange exchange,
                           Dictionary <string, int> codesForExchangeRates,
                           ExchangeDbEntities context,
                           IConversionDao conversionDao,
                           ICurrencyDao currencyDao,
                           ApiConnections apiConnections,
                           ExchangeHelper exchangeHelper)
 {
     _exchange = exchange;
     _codesForExchangeRates = codesForExchangeRates;
     _context        = context;
     _conversionDao  = conversionDao;
     _currencyDao    = currencyDao;
     _apiConnections = apiConnections;
     _exchangeHelper = exchangeHelper;
 }
Пример #3
0
 public SystemDomainValuesController(ICommandBus bus, ICurrencyDao _CurrencyDao, ILanguageDao _LanguageDao, ICountryDao _countryDao,
                                     INeighbourhoodDao _neighbourhoodDao, IStateDao _stateDao, ICityDao _cityDao,
                                     IPersonDao _PersonDao, IPersonOriginTypeDao _personOriginTypeDao, IPersonProfileDao _personProfileDao,
                                     IPersonStatusDao _personStatusDao, IPersonTypeDao _personTypeDao, IPersonAddressDao _personAddressDao,
                                     IPersonExpertiseDao _personExpertiseDao, IFileTempDao fileTemp, ISecuritySourceDao _SecurityDao) : base()
 {
     this.bus                  = bus;
     this._CurrencyDao         = _CurrencyDao;
     this._LanguageDao         = _LanguageDao;
     this._CountryDao          = _countryDao;
     this._NeighbourhoodDao    = _neighbourhoodDao;
     this._StateDao            = _stateDao;
     this._CityDao             = _cityDao;
     this._PersonDao           = _PersonDao;
     this._PersonOriginTypeDao = _personOriginTypeDao;
     this._PersonProfileDao    = _personProfileDao;
     this._PersonStatusDao     = _personStatusDao;
     this._PersonTypeDao       = _personTypeDao;
     this._PersonAddressDao    = _personAddressDao;
     this._listFileTemp        = new List <int>();
     this._FileTemp            = fileTemp;
     this._PersonExpertiseDao  = _personExpertiseDao;
     this._SecurityDao         = _SecurityDao;
 }
Пример #4
0
 public CurrencyMgr(ICurrencyDao entityDao, ICriteriaMgr criteriaMgr)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
 }
Пример #5
0
        public CurrencyLogic(ICurrencyDao iCurrencyDao)
        {
            NullCheck(iCurrencyDao);

            currencyDao = iCurrencyDao;
        }
Пример #6
0
 public CurrencyBaseMgr(ICurrencyDao entityDao)
 {
     this.entityDao = entityDao;
 }
Пример #7
0
 public CurrencyBaseMgr(ICurrencyDao entityDao)
 {
     this.entityDao = entityDao;
 }
Пример #8
0
 public CurrencyController(ICommandBus bus, ICurrencyDao _CurrencyDao) : base()
 {
     this.bus          = bus;
     this._CurrencyDao = _CurrencyDao;
 }
Пример #9
0
 public CurrencyMgr(ICurrencyDao entityDao, ICriteriaMgr criteriaMgr)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
 }