You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
using Dapper;
|
|
using Npgsql;
|
|
using NPOI.SS.Formula.Functions;
|
|
using ServiceReferenceDianLisResult;
|
|
using ServiceReferenceYinHai;
|
|
using Shentun.Peis.ImportLisResults;
|
|
using Shentun.Peis.PlugIns.Extensions.ImportLisResults.Dian;
|
|
using Shentun.Peis.PlugIns.ImportLisResults;
|
|
using Shentun.Peis.PlugIns.LisRequests;
|
|
using Shentun.Peis.PrintReports;
|
|
using Shentun.Peis.RegisterCheckPictures;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data.Common;
|
|
using System.Linq;
|
|
using System.ServiceModel;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shentun.Peis.PlugIns.Extensions.LisRequests.Hzcy
|
|
{
|
|
public class LisRequestPlugInsYinHai
|
|
{
|
|
public LisRequestPlugInsYinHai()
|
|
{
|
|
|
|
}
|
|
|
|
public async Task Testssss(Guid patientRegisterId)
|
|
{
|
|
string lisResultAddress = "";
|
|
using (var client = CreateClient(lisResultAddress))
|
|
{
|
|
await client.callBussinessAsync("");
|
|
}
|
|
}
|
|
|
|
private WebServiceClient CreateClient(string url)
|
|
{
|
|
return new WebServiceClient(new BasicHttpBinding(),
|
|
new EndpointAddress(url));
|
|
}
|
|
}
|
|
}
|