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 ICSINVENTORYBLL { #region AddandEdit public static void AddandEdit(ICSINVENTORY routeLot, string Appconstr) { try { ICSINVENTORYDAL.AddandEdit(routeLot, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region select public static ICSINVENTORY select(String guid, String Appconstr) { return ICSINVENTORYDAL.select(guid, Appconstr); } #endregion #region delete public static void delete(List guidList, List codeList) { ICSINVENTORYDAL.delete(guidList, codeList); } #endregion #region find public static string find(String guid, String Appconstr) { return ICSINVENTORYDAL.find(guid, Appconstr); } #endregion } }