| 1234567891011121314151617181920212223 |
- using UAS_LabelMachine.Entity;
- namespace UAS_LabelMachine.PublicMethod
- {
- class LogicHandler
- {
- public static DataHelper dh = SystemInf.dh;
- public static void FilterData(string iCustCode, string iBrand, string iSpec, string iQty, string iDateCode, string iLotno, out string oSpec, out string oQty, out string oDatecode, out string oLotno)
- {
- oSpec = "";
- oQty = "";
- oDatecode = "";
- oLotno = "";
- string[] param = new string[] { iCustCode, iBrand, iSpec, iQty, iDateCode, iLotno, oSpec, oQty, oDatecode, oLotno };
- dh.CallProcedure("sp_datafilter", ref param);
- oSpec = param[6];
- oQty = param[7];
- oDatecode = param[8];
- oLotno = param[9];
- }
- }
- }
|