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 ICSIQCTESTDATABLL
|
|
{
|
|
|
|
#region AddandEdit
|
|
public static void AddandEdit(ICSIQCTESTDATA ItemLot, string Appconstr)
|
|
{
|
|
try
|
|
{
|
|
ICSIQCTESTDATADal.AddandEdit(ItemLot, Appconstr);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region AddandEdit
|
|
public static void AddIQCTestData(List<ICSIQCTESTDATA> ItemLotList, string Appconstr)
|
|
{
|
|
try
|
|
{
|
|
ICSIQCTESTDATADal.AddIQCTestData(ItemLotList, Appconstr);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region select
|
|
public static ICSIQCTESTDATA select(String guid, String Appconstr)
|
|
{
|
|
return ICSIQCTESTDATADal.select(guid, Appconstr);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region delete
|
|
public static void delete(List<String> guidList,List<string> codeList)
|
|
{
|
|
ICSIQCTESTDATADal.delete(guidList, codeList);
|
|
}
|
|
#endregion
|
|
|
|
|
|
}
|
|
}
|