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 ICSItemBackBLL { #region AddandEdit public static void AddandEdit(ICSItemBack vendorLot, string Appconstr) { try { ICSItemBackDAL.AddandEdit(vendorLot, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region AddandEditList public static void AddandEditList(List vendorLotList, string Appconstr) { try { ICSItemBackDAL.AddandEditList(vendorLotList, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region select public static ICSItemBack select(String guid, String Appconstr) { return ICSItemBackDAL.select(guid, Appconstr); } #endregion #region delete public static void delete(List guidList, List codeList) { ICSItemBackDAL.delete(guidList, codeList); } #endregion } }