1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using Newtonsoft.Json.Linq;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PTMIBase
- {
- public class InsuBusinessBase : IInsuBusiness
- {
- public string AgentFun(string InParam)
- {
- throw new NotImplementedException();
- }
- public string FeeUpload(string InParam)
- {
- throw new NotImplementedException();
- }
- public string GetPatientInfo(string InParam)
- {
- throw new NotImplementedException();
- }
- public string Init(string InParam)
- {
- throw new NotImplementedException();
- }
- public string PlatformDirectConnect(string InParam)
- {
- throw new NotImplementedException();
- }
- public string Register(string InParam)
- {
- throw new NotImplementedException();
- }
- public string SelfServiceMachine(string InParam)
- {
- throw new NotImplementedException();
- }
- public string Settlement(string InParam)
- {
- throw new NotImplementedException();
- }
- }
- }
|