InsuBusinessBase.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 PTMIBase
  8. {
  9. public class InsuBusinessBase : IInsuBusiness
  10. {
  11. public string AgentFun(string InParam)
  12. {
  13. throw new NotImplementedException();
  14. }
  15. public string FeeUpload(string InParam)
  16. {
  17. throw new NotImplementedException();
  18. }
  19. public string GetPatientInfo(string InParam)
  20. {
  21. throw new NotImplementedException();
  22. }
  23. public string Init(string InParam)
  24. {
  25. throw new NotImplementedException();
  26. }
  27. public string PlatformDirectConnect(string InParam)
  28. {
  29. throw new NotImplementedException();
  30. }
  31. public string Register(string InParam)
  32. {
  33. throw new NotImplementedException();
  34. }
  35. public string SelfServiceMachine(string InParam)
  36. {
  37. throw new NotImplementedException();
  38. }
  39. public string Settlement(string InParam)
  40. {
  41. throw new NotImplementedException();
  42. }
  43. }
  44. }