|
@@ -0,0 +1,19 @@
|
|
|
+using Newtonsoft.Json.Linq;
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace PTMedicalInsurance.Business.Local
|
|
|
+{
|
|
|
+ public class TestProcess
|
|
|
+ {
|
|
|
+ public void test(JObject joInput)
|
|
|
+ {
|
|
|
+ OPSettlementProcess process = new OPSettlementProcess();
|
|
|
+ process.Handle(joInput);
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|