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