Roc 7 лет назад
Родитель
Сommit
c2f2e8127e

+ 0 - 1
src/Essensoft.AspNetCore.Payment.Alipay/AlipayClient.cs

@@ -5,7 +5,6 @@ using System.Security.Cryptography;
 using System.Text;
 using System.Threading.Tasks;
 using Essensoft.AspNetCore.Payment.Alipay.Parser;
-using Essensoft.AspNetCore.Payment.Alipay.Request;
 using Essensoft.AspNetCore.Payment.Alipay.Utility;
 using Essensoft.AspNetCore.Payment.Security;
 using Microsoft.Extensions.Logging;

+ 0 - 1
src/Essensoft.AspNetCore.Payment.Alipay/IAlipayClient.cs

@@ -1,5 +1,4 @@
 using System.Threading.Tasks;
-using Essensoft.AspNetCore.Payment.Alipay.Request;
 
 namespace Essensoft.AspNetCore.Payment.Alipay
 {

+ 0 - 1
src/Essensoft.AspNetCore.Payment.Alipay/Parser/AlipayJsonParser.cs

@@ -1,6 +1,5 @@
 using System;
 using System.Collections;
-using Essensoft.AspNetCore.Payment.Alipay.Request;
 using Essensoft.AspNetCore.Payment.Alipay.Utility;
 using Essensoft.AspNetCore.Payment.Security;
 using Newtonsoft.Json;

+ 0 - 1
src/Essensoft.AspNetCore.Payment.Alipay/Parser/AlipayXmlParser.cs

@@ -4,7 +4,6 @@ using System.IO;
 using System.Text;
 using System.Text.RegularExpressions;
 using System.Xml.Serialization;
-using Essensoft.AspNetCore.Payment.Alipay.Request;
 using Essensoft.AspNetCore.Payment.Alipay.Utility;
 using Essensoft.AspNetCore.Payment.Security;
 

+ 1 - 3
src/Essensoft.AspNetCore.Payment.Alipay/Parser/IAlipayParser.cs

@@ -1,6 +1,4 @@
-using Essensoft.AspNetCore.Payment.Alipay.Request;
-
-namespace Essensoft.AspNetCore.Payment.Alipay.Parser
+namespace Essensoft.AspNetCore.Payment.Alipay.Parser
 {
     /// <summary>
     /// Alipay API响应解释器接口。响应格式可以是XML, JSON等等。