You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using ICSSoft.Frame.Data.DAL; using ICSSoft.Frame.Data.Entity;
namespace ICSSoft.Frame.Data.BLL { public class ICSGaugeBLL {
#region 根据工单查询子件机汇总信息
public static DataSet select_(String MOCode, String TransNO, String Appconstr) { try { return ICSGaugeDAL.select_(MOCode, TransNO, Appconstr); } catch (Exception ex) { throw new Exception(ex.Message); } } public static DataSet select(String MOCode, String TransNO, String Appconstr, String where) { try { return ICSGaugeDAL.select(MOCode, TransNO, Appconstr, where); } catch (Exception ex) { throw new Exception(ex.Message); } } #endregion
#region 根据工单查询拣料表信息
public static DataSet GetGauge_(String MOCode, String Appconstr) { try { return ICSGaugeDAL.GetGauge_(MOCode, Appconstr); } catch (Exception ex) { throw new Exception(ex.Message); } } public static DataSet GetGauge(String MOCode, String Appconstr, String where) { try { return ICSGaugeDAL.GetGauge(MOCode, Appconstr, where); } catch (Exception ex) { throw new Exception(ex.Message); } } #endregion
} }
|