├── .gitignore ├── BusinessLayer └── CBS.Payment.Business │ ├── CBS.Payment.Business.csproj │ ├── IPaymentService.cs │ ├── PaymentFacade.cs │ ├── PaymentHelper.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ThirdPayment │ ├── AlipayHelper.cs │ ├── AlipayLogic.cs │ ├── AlipayVerify.cs │ ├── PaymentNotifyLogic.cs │ ├── TenpayHelper.cs │ ├── TenpayLogic.cs │ ├── TenpayVerify.cs │ └── ThirdPaymentFactory.cs │ └── packages.config ├── CommonLayer └── CBS.Payment.Utility │ ├── AESHelper.cs │ ├── CBS.Payment.Utility.csproj │ ├── HttpHelper.cs │ ├── LogHelper.cs │ ├── MD5Helper.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── SerializerHelper.cs ├── DataLayer ├── CBS.Payment.Alipay │ ├── AlipayCommon.cs │ ├── AlipayConfigHelper.cs │ ├── AlipayCoreHelper.cs │ ├── AlipayHelper.cs │ ├── AlipayNotifyHelper.cs │ ├── CBS.Payment.Alipay.csproj │ ├── MD5Helper.cs │ ├── Model │ │ ├── AlipayAccountQuery.cs │ │ ├── AlipayAccountQueryDetail.cs │ │ ├── AlipayAccountQueryResult.cs │ │ ├── AlipayCaePay.cs │ │ ├── AlipayCaePayResult.cs │ │ ├── AlipayFreeze.cs │ │ ├── AlipayPay.cs │ │ ├── AlipayRefund.cs │ │ ├── AlipayRequestBase.cs │ │ ├── AlipayResponseBase.cs │ │ ├── AlipayRoyalty.cs │ │ ├── AlipayServiceName.cs │ │ ├── AlipaySuppl.cs │ │ ├── AlipayTrans.cs │ │ └── AlipayUnFreeze.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── CBS.Payment.DB │ ├── CBS.Payment.DB.csproj │ ├── ConnectionString.cs │ ├── PaymentDB │ │ ├── PaymentDBCMD.cs │ │ ├── PaymentDBFacade.cs │ │ └── PaymentDBQuery.cs │ └── Properties │ │ └── AssemblyInfo.cs └── CBS.Payment.Tenpay │ ├── CBS.Payment.Tenpay.csproj │ ├── MD5Helper.cs │ ├── Model │ ├── TenpayCmdNo.cs │ ├── TenpayPay.cs │ ├── TenpayRefund.cs │ ├── TenpayRequestBase.cs │ ├── TenpayResponseBase.cs │ └── TenpayRoyalty.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── TenpayBaseSplitRequestHandler.cs │ ├── TenpayClientResponseHandler.cs │ ├── TenpayCommon.cs │ ├── TenpayConfigHelper.cs │ ├── TenpayCoreHelper.cs │ ├── TenpayHelper.cs │ ├── TenpayHttpHelper.cs │ ├── TenpayPayRequestHandler.cs │ ├── TenpayPayResponseHandler.cs │ ├── TenpayRequestHandler.cs │ ├── TenpayResponseHandler.cs │ └── TenpayScriptClientResponseHandler.cs ├── EntityLayer ├── CBS.Payment.DTO │ ├── CBS.Payment.DTO.csproj │ ├── CBS.Payment.DTO.csproj.user │ ├── Common │ │ ├── FreezeParameterRequest.cs │ │ ├── PayChannels.cs │ │ ├── PayPartner.cs │ │ ├── PaySceneInfo.cs │ │ ├── PaySubMch.cs │ │ ├── RequestBase.cs │ │ ├── ResponseBase.cs │ │ └── RoyaltyParameterRequest.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Request │ │ ├── TradeAutoPayRequest.cs │ │ ├── TradeBalanceQueryRequest.cs │ │ ├── TradeFreezeRequest.cs │ │ ├── TradePayRequest.cs │ │ ├── TradeRefundRequest.cs │ │ ├── TradeRoyaltyRequest.cs │ │ ├── TradeSupplRequest.cs │ │ ├── TradeTransRequest.cs │ │ └── TradeUnFreezeRequest.cs │ └── Response │ │ ├── TradeAutoPayResponse.cs │ │ ├── TradeBalanceQueryResponse.cs │ │ ├── TradeFreezeResponse.cs │ │ ├── TradePayResponse.cs │ │ ├── TradeRefundResponse.cs │ │ ├── TradeRoyaltyResponse.cs │ │ ├── TradeSupplResponse.cs │ │ ├── TradeTransResponse.cs │ │ └── TradeUnFreezeResponse.cs └── CBS.Payment.Entity │ ├── CBS.Payment.Entity.csproj │ ├── CBS.Payment.Entity.csproj.user │ ├── Model │ ├── AlipayCaeNotifyModel.cs │ ├── AlipayFreezeNotifyModel.cs │ ├── AlipayPayNotifyModel.cs │ ├── AlipayPayReturnModel.cs │ ├── AlipayRefundNotifyModel.cs │ ├── AlipayTransNotifyModel.cs │ ├── AlipayUnFreezeNotifyModel.cs │ └── TenpayPayReturnModel.cs │ ├── PaymentDB │ ├── AccountEntity.cs │ ├── AlipayFlowEntity.cs │ ├── AppNotifyTypeEntity.cs │ ├── AppNotifyUrlEntity.cs │ ├── ReceiveNotifyLogEntity.cs │ ├── RequestLogEntity.cs │ ├── ResponseLogEntity.cs │ ├── SendNotifyLogEntity.cs │ ├── TenpayFlowEntity.cs │ └── TradeFreezeEntity.cs │ └── Properties │ └── AssemblyInfo.cs ├── PaymentDemo.sln ├── PresentationLayer ├── CBS.Payment.Notify │ ├── Alipay │ │ ├── Alipay_CAEPayNotify.aspx │ │ ├── Alipay_CAEPayNotify.aspx.cs │ │ ├── Alipay_CAEPayNotify.aspx.designer.cs │ │ ├── Alipay_DbackNotify.aspx │ │ ├── Alipay_DbackNotify.aspx.cs │ │ ├── Alipay_DbackNotify.aspx.designer.cs │ │ ├── Alipay_FreezeNotify.aspx │ │ ├── Alipay_FreezeNotify.aspx.cs │ │ ├── Alipay_FreezeNotify.aspx.designer.cs │ │ ├── Alipay_PayNotify.aspx │ │ ├── Alipay_PayNotify.aspx.cs │ │ ├── Alipay_PayNotify.aspx.designer.cs │ │ ├── Alipay_PayReturn.aspx │ │ ├── Alipay_PayReturn.aspx.cs │ │ ├── Alipay_PayReturn.aspx.designer.cs │ │ ├── Alipay_RefundNotify.aspx │ │ ├── Alipay_RefundNotify.aspx.cs │ │ ├── Alipay_RefundNotify.aspx.designer.cs │ │ ├── Alipay_TransNotify.aspx │ │ ├── Alipay_TransNotify.aspx.cs │ │ ├── Alipay_TransNotify.aspx.designer.cs │ │ ├── Alipay_UnFreezeNotify.aspx │ │ ├── Alipay_UnFreezeNotify.aspx.cs │ │ └── Alipay_UnFreezeNotify.aspx.designer.cs │ ├── CBS.Payment.Notify.csproj │ ├── CBS.Payment.Notify.csproj.user │ ├── Config │ │ ├── AppSetting.Dev.config │ │ ├── AppSetting.Prod.config │ │ ├── Database.Dev.config │ │ ├── Database.Prod.config │ │ └── log4net.config │ ├── Default.aspx │ ├── Default.aspx.cs │ ├── Default.aspx.designer.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Tenpay │ │ ├── DoSuccess.aspx │ │ ├── DoSuccess.aspx.cs │ │ ├── DoSuccess.aspx.designer.cs │ │ ├── TradePay_Return.aspx │ │ ├── TradePay_Return.aspx.cs │ │ └── TradePay_Return.aspx.designer.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config └── CBS.Payment.Services │ ├── CBS.Payment.Services.csproj │ ├── CBS.Payment.Services.csproj.user │ ├── Config │ ├── AppSetting.Dev.config │ ├── AppSetting.Prod.config │ ├── Database.Dev.config │ ├── Database.Prod.config │ ├── ServiceModel.Behaviors.config │ └── log4net.config │ ├── PaymentService.svc │ ├── PaymentService.svc.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ └── PaymentServices.pubxml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── README.md └── packages ├── log4net.2.0.8 ├── lib │ ├── net20-full │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net35-client │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net35-full │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net40-client │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net40-full │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net45-full │ │ ├── log4net.dll │ │ └── log4net.xml │ └── netstandard1.3 │ │ └── log4net.dll └── log4net.2.0.8.nupkg └── repositories.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /BusinessLayer/CBS.Payment.Business/CBS.Payment.Business.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/BusinessLayer/CBS.Payment.Business/CBS.Payment.Business.csproj -------------------------------------------------------------------------------- /BusinessLayer/CBS.Payment.Business/IPaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/BusinessLayer/CBS.Payment.Business/IPaymentService.cs -------------------------------------------------------------------------------- /BusinessLayer/CBS.Payment.Business/PaymentFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/BusinessLayer/CBS.Payment.Business/PaymentFacade.cs -------------------------------------------------------------------------------- /BusinessLayer/CBS.Payment.Business/PaymentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/BusinessLayer/CBS.Payment.Business/PaymentHelper.cs -------------------------------------------------------------------------------- /BusinessLayer/CBS.Payment.Business/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/BusinessLayer/CBS.Payment.Business/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BusinessLayer/CBS.Payment.Business/ThirdPayment/AlipayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/BusinessLayer/CBS.Payment.Business/ThirdPayment/AlipayHelper.cs -------------------------------------------------------------------------------- /BusinessLayer/CBS.Payment.Business/ThirdPayment/AlipayLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/BusinessLayer/CBS.Payment.Business/ThirdPayment/AlipayLogic.cs -------------------------------------------------------------------------------- /BusinessLayer/CBS.Payment.Business/ThirdPayment/AlipayVerify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/BusinessLayer/CBS.Payment.Business/ThirdPayment/AlipayVerify.cs -------------------------------------------------------------------------------- /BusinessLayer/CBS.Payment.Business/ThirdPayment/PaymentNotifyLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/BusinessLayer/CBS.Payment.Business/ThirdPayment/PaymentNotifyLogic.cs -------------------------------------------------------------------------------- /BusinessLayer/CBS.Payment.Business/ThirdPayment/TenpayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/BusinessLayer/CBS.Payment.Business/ThirdPayment/TenpayHelper.cs -------------------------------------------------------------------------------- /BusinessLayer/CBS.Payment.Business/ThirdPayment/TenpayLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/BusinessLayer/CBS.Payment.Business/ThirdPayment/TenpayLogic.cs -------------------------------------------------------------------------------- /BusinessLayer/CBS.Payment.Business/ThirdPayment/TenpayVerify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/BusinessLayer/CBS.Payment.Business/ThirdPayment/TenpayVerify.cs -------------------------------------------------------------------------------- /BusinessLayer/CBS.Payment.Business/ThirdPayment/ThirdPaymentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/BusinessLayer/CBS.Payment.Business/ThirdPayment/ThirdPaymentFactory.cs -------------------------------------------------------------------------------- /BusinessLayer/CBS.Payment.Business/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/BusinessLayer/CBS.Payment.Business/packages.config -------------------------------------------------------------------------------- /CommonLayer/CBS.Payment.Utility/AESHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/CommonLayer/CBS.Payment.Utility/AESHelper.cs -------------------------------------------------------------------------------- /CommonLayer/CBS.Payment.Utility/CBS.Payment.Utility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/CommonLayer/CBS.Payment.Utility/CBS.Payment.Utility.csproj -------------------------------------------------------------------------------- /CommonLayer/CBS.Payment.Utility/HttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/CommonLayer/CBS.Payment.Utility/HttpHelper.cs -------------------------------------------------------------------------------- /CommonLayer/CBS.Payment.Utility/LogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/CommonLayer/CBS.Payment.Utility/LogHelper.cs -------------------------------------------------------------------------------- /CommonLayer/CBS.Payment.Utility/MD5Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/CommonLayer/CBS.Payment.Utility/MD5Helper.cs -------------------------------------------------------------------------------- /CommonLayer/CBS.Payment.Utility/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/CommonLayer/CBS.Payment.Utility/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CommonLayer/CBS.Payment.Utility/SerializerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/CommonLayer/CBS.Payment.Utility/SerializerHelper.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/AlipayCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/AlipayCommon.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/AlipayConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/AlipayConfigHelper.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/AlipayCoreHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/AlipayCoreHelper.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/AlipayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/AlipayHelper.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/AlipayNotifyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/AlipayNotifyHelper.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/CBS.Payment.Alipay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/CBS.Payment.Alipay.csproj -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/MD5Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/MD5Helper.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipayAccountQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipayAccountQuery.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipayAccountQueryDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipayAccountQueryDetail.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipayAccountQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipayAccountQueryResult.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipayCaePay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipayCaePay.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipayCaePayResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipayCaePayResult.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipayFreeze.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipayFreeze.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipayPay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipayPay.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipayRefund.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipayRefund.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipayRequestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipayRequestBase.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipayResponseBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipayResponseBase.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipayRoyalty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipayRoyalty.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipayServiceName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipayServiceName.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipaySuppl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipaySuppl.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipayTrans.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipayTrans.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Model/AlipayUnFreeze.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Model/AlipayUnFreeze.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Alipay/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Alipay/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.DB/CBS.Payment.DB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.DB/CBS.Payment.DB.csproj -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.DB/ConnectionString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.DB/ConnectionString.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.DB/PaymentDB/PaymentDBCMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.DB/PaymentDB/PaymentDBCMD.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.DB/PaymentDB/PaymentDBFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.DB/PaymentDB/PaymentDBFacade.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.DB/PaymentDB/PaymentDBQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.DB/PaymentDB/PaymentDBQuery.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.DB/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.DB/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/CBS.Payment.Tenpay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/CBS.Payment.Tenpay.csproj -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/MD5Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/MD5Helper.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/Model/TenpayCmdNo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/Model/TenpayCmdNo.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/Model/TenpayPay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/Model/TenpayPay.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/Model/TenpayRefund.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/Model/TenpayRefund.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/Model/TenpayRequestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/Model/TenpayRequestBase.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/Model/TenpayResponseBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/Model/TenpayResponseBase.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/Model/TenpayRoyalty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/Model/TenpayRoyalty.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/TenpayBaseSplitRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/TenpayBaseSplitRequestHandler.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/TenpayClientResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/TenpayClientResponseHandler.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/TenpayCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/TenpayCommon.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/TenpayConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/TenpayConfigHelper.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/TenpayCoreHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/TenpayCoreHelper.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/TenpayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/TenpayHelper.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/TenpayHttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/TenpayHttpHelper.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/TenpayPayRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/TenpayPayRequestHandler.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/TenpayPayResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/TenpayPayResponseHandler.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/TenpayRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/TenpayRequestHandler.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/TenpayResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/TenpayResponseHandler.cs -------------------------------------------------------------------------------- /DataLayer/CBS.Payment.Tenpay/TenpayScriptClientResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/DataLayer/CBS.Payment.Tenpay/TenpayScriptClientResponseHandler.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/CBS.Payment.DTO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/CBS.Payment.DTO.csproj -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/CBS.Payment.DTO.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/CBS.Payment.DTO.csproj.user -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Common/FreezeParameterRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Common/FreezeParameterRequest.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Common/PayChannels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Common/PayChannels.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Common/PayPartner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Common/PayPartner.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Common/PaySceneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Common/PaySceneInfo.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Common/PaySubMch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Common/PaySubMch.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Common/RequestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Common/RequestBase.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Common/ResponseBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Common/ResponseBase.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Common/RoyaltyParameterRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Common/RoyaltyParameterRequest.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Request/TradeAutoPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Request/TradeAutoPayRequest.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Request/TradeBalanceQueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Request/TradeBalanceQueryRequest.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Request/TradeFreezeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Request/TradeFreezeRequest.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Request/TradePayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Request/TradePayRequest.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Request/TradeRefundRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Request/TradeRefundRequest.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Request/TradeRoyaltyRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Request/TradeRoyaltyRequest.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Request/TradeSupplRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Request/TradeSupplRequest.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Request/TradeTransRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Request/TradeTransRequest.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Request/TradeUnFreezeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Request/TradeUnFreezeRequest.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Response/TradeAutoPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Response/TradeAutoPayResponse.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Response/TradeBalanceQueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Response/TradeBalanceQueryResponse.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Response/TradeFreezeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Response/TradeFreezeResponse.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Response/TradePayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Response/TradePayResponse.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Response/TradeRefundResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Response/TradeRefundResponse.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Response/TradeRoyaltyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Response/TradeRoyaltyResponse.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Response/TradeSupplResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Response/TradeSupplResponse.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Response/TradeTransResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Response/TradeTransResponse.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.DTO/Response/TradeUnFreezeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.DTO/Response/TradeUnFreezeResponse.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/CBS.Payment.Entity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/CBS.Payment.Entity.csproj -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/CBS.Payment.Entity.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/CBS.Payment.Entity.csproj.user -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/Model/AlipayCaeNotifyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/Model/AlipayCaeNotifyModel.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/Model/AlipayFreezeNotifyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/Model/AlipayFreezeNotifyModel.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/Model/AlipayPayNotifyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/Model/AlipayPayNotifyModel.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/Model/AlipayPayReturnModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/Model/AlipayPayReturnModel.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/Model/AlipayRefundNotifyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/Model/AlipayRefundNotifyModel.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/Model/AlipayTransNotifyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/Model/AlipayTransNotifyModel.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/Model/AlipayUnFreezeNotifyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/Model/AlipayUnFreezeNotifyModel.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/Model/TenpayPayReturnModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/Model/TenpayPayReturnModel.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/PaymentDB/AccountEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/PaymentDB/AccountEntity.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/PaymentDB/AlipayFlowEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/PaymentDB/AlipayFlowEntity.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/PaymentDB/AppNotifyTypeEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/PaymentDB/AppNotifyTypeEntity.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/PaymentDB/AppNotifyUrlEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/PaymentDB/AppNotifyUrlEntity.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/PaymentDB/ReceiveNotifyLogEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/PaymentDB/ReceiveNotifyLogEntity.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/PaymentDB/RequestLogEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/PaymentDB/RequestLogEntity.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/PaymentDB/ResponseLogEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/PaymentDB/ResponseLogEntity.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/PaymentDB/SendNotifyLogEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/PaymentDB/SendNotifyLogEntity.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/PaymentDB/TenpayFlowEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/PaymentDB/TenpayFlowEntity.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/PaymentDB/TradeFreezeEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/PaymentDB/TradeFreezeEntity.cs -------------------------------------------------------------------------------- /EntityLayer/CBS.Payment.Entity/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/EntityLayer/CBS.Payment.Entity/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PaymentDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PaymentDemo.sln -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_CAEPayNotify.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_CAEPayNotify.aspx -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_CAEPayNotify.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_CAEPayNotify.aspx.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_CAEPayNotify.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_CAEPayNotify.aspx.designer.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_DbackNotify.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_DbackNotify.aspx -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_DbackNotify.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_DbackNotify.aspx.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_DbackNotify.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_DbackNotify.aspx.designer.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_FreezeNotify.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_FreezeNotify.aspx -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_FreezeNotify.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_FreezeNotify.aspx.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_FreezeNotify.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_FreezeNotify.aspx.designer.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_PayNotify.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_PayNotify.aspx -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_PayNotify.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_PayNotify.aspx.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_PayNotify.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_PayNotify.aspx.designer.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_PayReturn.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_PayReturn.aspx -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_PayReturn.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_PayReturn.aspx.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_PayReturn.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_PayReturn.aspx.designer.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_RefundNotify.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_RefundNotify.aspx -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_RefundNotify.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_RefundNotify.aspx.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_RefundNotify.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_RefundNotify.aspx.designer.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_TransNotify.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_TransNotify.aspx -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_TransNotify.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_TransNotify.aspx.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_TransNotify.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_TransNotify.aspx.designer.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_UnFreezeNotify.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_UnFreezeNotify.aspx -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_UnFreezeNotify.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_UnFreezeNotify.aspx.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_UnFreezeNotify.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Alipay/Alipay_UnFreezeNotify.aspx.designer.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/CBS.Payment.Notify.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/CBS.Payment.Notify.csproj -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/CBS.Payment.Notify.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/CBS.Payment.Notify.csproj.user -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Config/AppSetting.Dev.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Config/AppSetting.Dev.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Config/AppSetting.Prod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Config/AppSetting.Prod.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Config/Database.Dev.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Config/Database.Dev.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Config/Database.Prod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Config/Database.Prod.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Config/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Config/log4net.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Default.aspx -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Default.aspx.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Default.aspx.designer.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Tenpay/DoSuccess.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Tenpay/DoSuccess.aspx -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Tenpay/DoSuccess.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Tenpay/DoSuccess.aspx.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Tenpay/DoSuccess.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Tenpay/DoSuccess.aspx.designer.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Tenpay/TradePay_Return.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Tenpay/TradePay_Return.aspx -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Tenpay/TradePay_Return.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Tenpay/TradePay_Return.aspx.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Tenpay/TradePay_Return.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Tenpay/TradePay_Return.aspx.designer.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Web.Debug.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Web.Release.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/Web.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Notify/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Notify/packages.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/CBS.Payment.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/CBS.Payment.Services.csproj -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/CBS.Payment.Services.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/CBS.Payment.Services.csproj.user -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/Config/AppSetting.Dev.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/Config/AppSetting.Dev.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/Config/AppSetting.Prod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/Config/AppSetting.Prod.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/Config/Database.Dev.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/Config/Database.Dev.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/Config/Database.Prod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/Config/Database.Prod.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/Config/ServiceModel.Behaviors.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/Config/ServiceModel.Behaviors.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/Config/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/Config/log4net.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/PaymentService.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/PaymentService.svc -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/PaymentService.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/PaymentService.svc.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/Properties/PublishProfiles/PaymentServices.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/Properties/PublishProfiles/PaymentServices.pubxml -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/Web.Debug.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/Web.Release.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/Web.config -------------------------------------------------------------------------------- /PresentationLayer/CBS.Payment.Services/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/PresentationLayer/CBS.Payment.Services/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/README.md -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net20-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/log4net.2.0.8/lib/net20-full/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net20-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/log4net.2.0.8/lib/net20-full/log4net.xml -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net35-client/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/log4net.2.0.8/lib/net35-client/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net35-client/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/log4net.2.0.8/lib/net35-client/log4net.xml -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net35-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/log4net.2.0.8/lib/net35-full/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net35-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/log4net.2.0.8/lib/net35-full/log4net.xml -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net40-client/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/log4net.2.0.8/lib/net40-client/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net40-client/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/log4net.2.0.8/lib/net40-client/log4net.xml -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net40-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/log4net.2.0.8/lib/net40-full/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net40-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/log4net.2.0.8/lib/net40-full/log4net.xml -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net45-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/log4net.2.0.8/lib/net45-full/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net45-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/log4net.2.0.8/lib/net45-full/log4net.xml -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/netstandard1.3/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/log4net.2.0.8/lib/netstandard1.3/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.8/log4net.2.0.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/log4net.2.0.8/log4net.2.0.8.nupkg -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/17-PaymentDemo/HEAD/packages/repositories.config --------------------------------------------------------------------------------