| 12345678910111213141516171819 |
- 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);
- }
- }
- }
|