| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using UAS_LabelMachine.Entity;
- namespace UAS_LabelMachine.PublicMethod
- {
- class LogicHandler
- {
- public static DataHelper dh = SystemInf.dh;
- public static void GetDataSQL(string iInoutno, string iText, out string oSQL)
- {
- oSQL = "";
- string[] param = new string[] { iInoutno, iText, oSQL };
- dh.CallProcedure("SP_GETDATASQL", ref param);
- oSQL = param[2];
- }
- }
- }
|