using System; using System.Collections.Generic; using System.Linq; using System.Text; using ICSSoft.Frame.Data.DAL; using ICSSoft.Frame.Data.Entity; using System.Data; namespace ICSSoft.Frame.Data.BLL { public class ICSASNIQCBLL { #region AddandEdit public static void Edit(ICSASNIQC ItemLot, string Appconstr) { try { ICSASNIQCDal.Edit(ItemLot, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region AddandEdit public static void save(DataTable retData, string Appconstr) { try { ICSASNIQCDal.Save(retData, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region select public static ICSASNIQC select(String guid, String Appconstr) { return ICSASNIQCDal.select(guid, Appconstr); } #endregion #region query public static ICSASNIQC Query(String iqcno, String Appconstr) { return ICSASNIQCDal.Query(iqcno,Appconstr); } #endregion #region delete public static void delete(List guidList) { try { ICSASNIQCDal.delete(guidList); } catch (Exception ex) { throw ex; } } #endregion #region cancel public static void cancel(List guidList, List lineList) { try { ICSASNIQCDal.cancel(guidList,lineList); } catch (Exception ex) { throw ex; } } #endregion #region OK public static void OK(List guidList,List lineList) { try { ICSASNIQCDal.OK(guidList, lineList); } catch (Exception ex) { throw ex; } } #endregion } }