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 ICSINVInfoBLL { #region AddandEdit public static void AddandEdit(ICSINVInfo routeLot, string Appconstr) { try { ICSINVInfoDAL.AddandEdit(routeLot, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region 新增和修改List public static string AddList(List InfoList, List listLvL, string dsconn) { try { if (string.IsNullOrWhiteSpace(dsconn)) { throw new Exception("数据库连接字符串错误"); } return ICSINVInfoDAL.AddList(InfoList, listLvL, dsconn); } catch (Exception ex) { throw ex; } } #endregion #region select public static ICSINVInfo select(String guid, String Appconstr) { return ICSINVInfoDAL.select(guid, Appconstr); } #endregion #region delete public static void delete(List guidList, List codeList) { ICSINVInfoDAL.delete(guidList, codeList); } #endregion } }