LogicHandler.cs 539 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using UAS_LabelMachine.Entity;
  6. namespace UAS_LabelMachine.PublicMethod
  7. {
  8. class LogicHandler
  9. {
  10. public static DataHelper dh = SystemInf.dh;
  11. public static void GetDataSQL(string iInoutno, string iText, out string oSQL)
  12. {
  13. oSQL = "";
  14. string[] param = new string[] { iInoutno, iText, oSQL };
  15. dh.CallProcedure("SP_GETDATASQL", ref param);
  16. oSQL = param[2];
  17. }
  18. }
  19. }