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 ICSSecDocTypeStepBLL { #region 增加修改 public static void AddandEdit(ICSSecDocTypeStep line, string Appconstr) { try { ICSSecDocTypeStepDAL.AddandEdit(line, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region 增加修改List public static void AddandEditList(List lineList, string Appconstr) { try { ICSSecDocTypeStepDAL.AddandEditList(lineList, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region 查询 public static ICSSecDocTypeStep select(String guid, String Appconstr) { try { return ICSSecDocTypeStepDAL.select(guid, Appconstr); } catch (Exception ex) { throw ex; } } public static ICSSecDocTypeStep selectSeqTop(String DocTypeID, String Appconstr) { try { return ICSSecDocTypeStepDAL.selectSeqTop(DocTypeID, Appconstr); } catch (Exception ex) { throw ex; } } public static ICSSecDocTypeStep selectStepBySeq(String DocTypeID,String seq ,String Appconstr) { try { return ICSSecDocTypeStepDAL.selectStepBySeq(DocTypeID, seq, Appconstr); } catch (Exception ex) { throw ex; } } #endregion #region 删除 public static void delete(List guidList, String Appconstr) { try { ICSSecDocTypeStepDAL.delete(guidList, Appconstr); } catch (Exception ex) { throw ex; } } #endregion } }