1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using Newtonsoft.Json.Linq;
- using PTMedicalInsurance.Variables;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace PTMedicalInsurance.Helper
- {
- class InvokeCOMCenter : IInvokeCenter
- {
- public int Business(string inputData, ref string outputData, ref string pErrMsg)
- {
- return 0;
- }
- public int BusinessExt(string inputData, ref string outputData, ref string pErrMsg)
- {
- throw new NotImplementedException();
- }
- public int DownloadFile(string inputData, ref string outputData)
- {
- throw new NotImplementedException();
- }
- public int Init(ref string pErrMsg)
- {
- return 0;
- }
- public int UploadFile(string inputData, ref string outputData, ref string pErrMsg)
- {
- throw new NotImplementedException();
- }
- }
- }
|