You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.3 KiB
98 lines
2.3 KiB
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<ICSSecDocTypeStep> 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<String> guidList, String Appconstr)
|
|
{
|
|
try
|
|
{
|
|
ICSSecDocTypeStepDAL.delete(guidList, Appconstr);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
|
|
}
|
|
}
|