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"]; }
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; }
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; }
public CurrencyMgr(ICurrencyDao entityDao, ICriteriaMgr criteriaMgr) : base(entityDao) { this.criteriaMgr = criteriaMgr; }
public CurrencyLogic(ICurrencyDao iCurrencyDao) { NullCheck(iCurrencyDao); currencyDao = iCurrencyDao; }
public CurrencyBaseMgr(ICurrencyDao entityDao) { this.entityDao = entityDao; }
public CurrencyController(ICommandBus bus, ICurrencyDao _CurrencyDao) : base() { this.bus = bus; this._CurrencyDao = _CurrencyDao; }