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.
58 lines
1.3 KiB
58 lines
1.3 KiB
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 ICSItemBackBLL
|
|
{
|
|
|
|
#region AddandEdit
|
|
public static void AddandEdit(ICSItemBack vendorLot, string Appconstr)
|
|
{
|
|
try
|
|
{
|
|
ICSItemBackDAL.AddandEdit(vendorLot, Appconstr);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region AddandEditList
|
|
public static void AddandEditList(List<ICSItemBack> vendorLotList, string Appconstr)
|
|
{
|
|
try
|
|
{
|
|
ICSItemBackDAL.AddandEditList(vendorLotList, Appconstr);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region select
|
|
public static ICSItemBack select(String guid, String Appconstr)
|
|
{
|
|
return ICSItemBackDAL.select(guid, Appconstr);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region delete
|
|
public static void delete(List<String> guidList, List<string> codeList)
|
|
{
|
|
ICSItemBackDAL.delete(guidList, codeList);
|
|
}
|
|
#endregion
|
|
|
|
|
|
}
|
|
}
|