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 ICSRESBLL { #region AddandEdit public static void AddandEdit(ICSRES ItemLot, string Appconstr) { try { ICSRESDAL.AddandEdit(ItemLot, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region select public static DataTable select(String guid, String Appconstr) { try { return ICSRESDAL.select(guid, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region delete public static void delete(List guidList) { try { ICSRESDAL.delete(guidList); } catch (Exception ex) { throw ex; } } #endregion } }