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.
44 lines
971 B
44 lines
971 B
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 ICSOP2RESBLL
|
|
{
|
|
|
|
#region AddandEdit
|
|
public static void AddandEdit(DataTable dt,string id,string code, string Appconstr)
|
|
{
|
|
try
|
|
{
|
|
ICSOP2RESDAL.AddandEdit(dt,id,code, Appconstr);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region delete
|
|
public static void delete(List<String> guidList,string conn)
|
|
{
|
|
ICSOP2RESDAL.delete(guidList, conn);
|
|
}
|
|
#endregion
|
|
|
|
#region edit
|
|
public static void edit(List<string> idList,List<string> seqList)
|
|
{
|
|
ICSOP2RESDAL.Edit(idList, seqList);
|
|
}
|
|
#endregion
|
|
|
|
|
|
}
|
|
}
|