using System; using System.Collections.Generic; using System.Linq; using System.Text; using ICSSoft.Frame.Data.DAL; using System.Data; using ICSSoft.Frame.Data.Entity; namespace ICSSoft.Frame.Data.BLL { public class ICSOQCCKGROUPBLL { #region AddandEdit public static void AddandEdit(ICSOQCCKGROUP ItemLot, string Appconstr) { try { ICSOQCCKGROUPDAL.AddandEdit(ItemLot, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region delete public static void delete(List guidList) { ICSOQCCKGROUPDAL.delete(guidList); } #endregion #region 获取检验方式 public static DataTable SearchData(string dsconn) { try { return ICSOQCCKGROUPDAL.SearchData(dsconn); } catch (Exception ex) { throw ex; } } public static DataTable SearchData(string EnumText, string dsconn) { try { return ICSOQCCKGROUPDAL.SearchData(EnumText, dsconn); } catch (Exception ex) { throw ex; } } #endregion #region 获取检验属性 public static DataTable SearchDataa(string dsconn) { try { return ICSOQCCKGROUPDAL.SearchDataa(dsconn); } catch (Exception ex) { throw ex; } } public static DataTable SearchDataa(string EnumText, string dsconn) { try { return ICSOQCCKGROUPDAL.SearchDataa(EnumText, dsconn); } catch (Exception ex) { throw ex; } } #endregion public static ICSOQCCKGROUP search(string CKGROUP, String Appconstr) { return ICSOQCCKGROUPDAL.search(CKGROUP, Appconstr); } public static string AddList(List InfoList, string Appconstr) { try { return ICSOQCCKGROUPDAL.AddList(InfoList, Appconstr); } catch (Exception ex) { throw ex; } } } }