12345678910111213141516171819202122 |
- using Newtonsoft.Json.Linq;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PTMedicalInsurance.Business.Local
- {
- class InjuryIPSettlementService : IChargeService
- {
- public string Charge(string operationType, JObject joInput)
- {
- throw new NotImplementedException();
- }
- public string DisCharge(JObject joParam)
- {
- throw new NotImplementedException();
- }
- }
- }
|