protected virtual void SetupBase(string strProductRoot, string strProductHive, int strProductCipherLength, string strBaseKey, string strSpecificKey, string strKeyDat, string strCustomerData, string strLogPath = "", bool blnLogEnabled = false, int intLogLevel = 0) { SetProductInfo(strProductRoot, strProductHive, strProductCipherLength); m_objLog = new Enterprise.EELog(); m_objLog.OverrideRegistryInformation(strLogPath, blnLogEnabled, intLogLevel); m_objLog.LogMessage("EEBase : SetupBase : Log Initialized", 35); m_objComputerManagement = new Enterprise.EEComputerManagement(); }
protected virtual void SetupBase(string strProductRoot = "", string strProductHive = "", int strProductCipherLength = 0) { // SetupBase("PCICharge", "EEPM", 2) SetProductInfo(strProductRoot, strProductHive, strProductCipherLength); m_objLog = new Enterprise.EELog(m_strProductRoot, m_strProductHive, m_strProductVersion, ""); m_objComputerManagement = new Enterprise.EEComputerManagement(); m_objLog.LogMessage("EEBase : SetupBase : Log Initialized", 35); }
// ################################################################################### // Constructors\Destructors // ################################################################################### public EEPMGWBase(int intGatewayID, string strGatewayURL, string strMerchantLogin, string strMerchantPassword, string strMerchantSecurityGUID, ref Enterprise.EELog objLog) { m_intGatewayID = intGatewayID; m_strGatewayResponseCode = ""; m_strGatewayResponseDescription = ""; m_intEEPGResponseCode = -1; m_strEEPGResponseDescription = ""; m_strGatewayURL = strGatewayURL; m_strMerchantLogin = strMerchantLogin; m_strMerchantPassword = strMerchantPassword; m_strMerchantSecurityGUID = strMerchantSecurityGUID; m_objLog = objLog; m_objSetGW = null; m_objNSoftwareGW = null; m_objNSoftwareCard = null; m_objNSoftwareCustomer = null; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls | SecurityProtocolType.Ssl3; BuildSetGW(); BuildScrubList(); }
// ################################################################################### // Constructors\Destructors // ################################################################################### public CustomGWPostCustomer(ref Enterprise.EELog objLog) : base(ref objLog) { SetupPostValueArray(); }
// ################################################################################### // Constructors\Destructors // ################################################################################### public CustomGWCard(ref Enterprise.EELog objLog) { m_objLog = objLog; }
// ################################################################################### // Constructors\Destructors // ################################################################################### public CustomGWGateway(ref Enterprise.EELog objLog) { m_objLog = objLog; m_objResponse = new CustomGWResponse(); m_dictSpecialFields = new System.Collections.Generic.Dictionary <string, string>(); }
public EEPGGWCCeBizCharge(int intGatewayID, string strGatewayURL, string strMerchantLogin, string strMerchantPassword, string strMerchantSecurityGUID, ref Enterprise.EELog objLog) : base(intGatewayID, strGatewayURL, strMerchantLogin, strMerchantPassword, strMerchantSecurityGUID, ref objLog) { }
public eBizChargeGateway(ref Enterprise.EELog objLog) : base(ref objLog) { Reset(); m_service = GetEbizServiceClient(); }
public eBizChargeCustomer(ref Enterprise.EELog objLog) : base(ref objLog) { }
public eBizChargeCard(ref Enterprise.EELog objLog) : base(ref objLog) { SetupPostValueArray(); }