using System; using System.Collections.Generic; using System.Linq; using System.Text; using ICSSoft.Frame.Data.DAL; using ICSSoft.Frame.Data.Entity; namespace ICSSoft.Frame.Data.BLL { public class ICSECSGBLL { #region AddandEdit public static void AddandEdit(ICSECSG ItemLot, string Appconstr) { try { ICSECSGDAL.AddandEdit(ItemLot, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region select public static ICSECSG select(String guid, String Appconstr) { return ICSECSGDAL.select(guid, Appconstr); } #endregion #region delete public static void delete(List guidList,List codeList) { ICSECSGDAL.delete(guidList, codeList); } #endregion } }