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
942 B
44 lines
942 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using ICSSoft.Frame.Data.DAL;
|
|
using ICSSoft.Frame.Data.Entity;
|
|
|
|
namespace ICSSoft.Frame.Data.BLL
|
|
{
|
|
public class ICSDUTYBLL
|
|
{
|
|
|
|
#region AddandEdit
|
|
public static void AddandEdit(ICSDUTY ItemLot, string Appconstr)
|
|
{
|
|
try
|
|
{
|
|
ICSDUTYDAL.AddandEdit(ItemLot, Appconstr);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region select
|
|
public static ICSDUTY select(String guid, String Appconstr)
|
|
{
|
|
return ICSDUTYDAL.select(guid, Appconstr);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region delete
|
|
public static void delete(List<String> guidList,List<string> codeList)
|
|
{
|
|
ICSDUTYDAL.delete(guidList, codeList);
|
|
}
|
|
#endregion
|
|
|
|
|
|
}
|
|
}
|