InjuryIPSettlementService.cs 517 B

12345678910111213141516171819202122
  1. using Newtonsoft.Json.Linq;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace PTMedicalInsurance.Business.Local
  8. {
  9. class InjuryIPSettlementService : IChargeService
  10. {
  11. public string Charge(string operationType, JObject joInput)
  12. {
  13. throw new NotImplementedException();
  14. }
  15. public string DisCharge(JObject joParam)
  16. {
  17. throw new NotImplementedException();
  18. }
  19. }
  20. }