using System; using System.Collections.Generic; using System.Linq; using System.Text; using ICSSoft.Frame.Data.Entity; using ICSSoft.Frame.Data.DAL; using System.Data; using ICSSoft.Frame.APP.Entity; namespace ICSSoft.Frame.Data.BLL { public class ICSEqpWithLocationBLL { #region 新增和修改List public static string AddList(List InfoList, string dsconn) { try { if (string.IsNullOrWhiteSpace(dsconn)) { throw new Exception("数据库连接字符串错误"); } IcsEqpWithLocationDAL.Add(InfoList, dsconn); return ""; } catch (Exception ex) { throw ex; } } #endregion #region 通过ID查询 public static IcsEqpWithLocation searchInfoByID(string ID, string dsconn) { try { return IcsEqpWithLocationDAL.searchInfoByID(ID, dsconn); } catch (Exception ex) { throw ex; } } #endregion #region 删除 public static void deleteInfo(List codeList, string dsconn) { try { IcsEqpWithLocationDAL.deleteInfo(codeList, dsconn); } catch (Exception ex) { throw ex; } } #endregion } }