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.
97 lines
2.2 KiB
97 lines
2.2 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 ICSASNIQCBLL
|
|
{
|
|
#region AddandEdit
|
|
public static void Edit(ICSASNIQC ItemLot, string Appconstr)
|
|
{
|
|
try
|
|
{
|
|
ICSASNIQCDal.Edit(ItemLot, Appconstr);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
#region AddandEdit
|
|
public static void save(DataTable retData, string Appconstr)
|
|
{
|
|
try
|
|
{
|
|
ICSASNIQCDal.Save(retData, Appconstr);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region select
|
|
public static ICSASNIQC select(String guid, String Appconstr)
|
|
{
|
|
return ICSASNIQCDal.select(guid, Appconstr);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region query
|
|
public static ICSASNIQC Query(String iqcno, String Appconstr)
|
|
{
|
|
return ICSASNIQCDal.Query(iqcno,Appconstr);
|
|
}
|
|
#endregion
|
|
|
|
#region delete
|
|
public static void delete(List<String> guidList)
|
|
{
|
|
try
|
|
{
|
|
ICSASNIQCDal.delete(guidList);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region cancel
|
|
public static void cancel(List<String> guidList, List<string> lineList)
|
|
{
|
|
try
|
|
{
|
|
ICSASNIQCDal.cancel(guidList,lineList);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region OK
|
|
public static void OK(List<String> guidList,List<string> lineList)
|
|
{
|
|
try
|
|
{
|
|
ICSASNIQCDal.OK(guidList, lineList);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
}
|
|
}
|