InvokeCOMCenter.cs 1019 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using Newtonsoft.Json.Linq;
  2. using PTMedicalInsurance.Variables;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Reflection;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace PTMedicalInsurance.Helper
  11. {
  12. class InvokeCOMCenter : IInvokeCenter
  13. {
  14. public int Business(string inputData, ref string outputData, ref string pErrMsg)
  15. {
  16. return 0;
  17. }
  18. public int BusinessExt(string inputData, ref string outputData, ref string pErrMsg)
  19. {
  20. throw new NotImplementedException();
  21. }
  22. public int DownloadFile(string inputData, ref string outputData)
  23. {
  24. throw new NotImplementedException();
  25. }
  26. public int Init(ref string pErrMsg)
  27. {
  28. return 0;
  29. }
  30. public int UploadFile(string inputData, ref string outputData, ref string pErrMsg)
  31. {
  32. throw new NotImplementedException();
  33. }
  34. }
  35. }