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 ICSSecDocTypeBLL { #region 增加修改 public static void AddandEdit(ICSSecDocType line, string Appconstr) { try { ICSSecDocTypeDAL.AddandEdit(line, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region 增加修改List public static void AddandEditList(List lineList, string Appconstr) { try { ICSSecDocTypeDAL.AddandEditList(lineList, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region 查询 public static ICSSecDocType select(String DocTypeCode, String Appconstr) { try { return ICSSecDocTypeDAL.select(DocTypeCode, Appconstr); } catch (Exception ex) { throw ex; } } public static ICSSecDocType selectByGuid(String guid, String Appconstr) { try { return ICSSecDocTypeDAL.selectByGuid(guid, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region 删除 public static void delete(List guidList, String Appconstr) { try { ICSSecDocTypeDAL.delete(guidList, Appconstr); } catch (Exception ex) { throw ex; } } #endregion } }