忽略dll文件git
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
using System.Net.Http;
|
||||
|
||||
namespace PaymentCenterClient
|
||||
{
|
||||
public class PaymentCenterHttpClient
|
||||
{
|
||||
private IHttpClientFactory _httpClientFactory;
|
||||
|
||||
internal static string _BaseUrl = "";
|
||||
|
||||
public PaymentCenterHttpClient(){}
|
||||
|
||||
public PaymentCenterHttpClient(IHttpClientFactory httpClientFactory)
|
||||
{
|
||||
_httpClientFactory = httpClientFactory;
|
||||
}
|
||||
|
||||
public string BaseUrl => _BaseUrl;
|
||||
|
||||
public HttpClient CreateHttpClient()
|
||||
{
|
||||
return _httpClientFactory.CreateClient("PaymentCenterClient");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user