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.
85 lines
1.9 KiB
85 lines
1.9 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using ICSSoft.Frame.Data.DAL;
|
|
using System.Data;
|
|
using ICSSoft.Frame.Data.Entity;
|
|
|
|
namespace ICSSoft.Frame.Data.BLL
|
|
{
|
|
public class ICSOQCCKBLL
|
|
{
|
|
#region AddandEdit
|
|
public static void AddandEdit(ICSOQCCK ItemLot, string Appconstr)
|
|
{
|
|
try
|
|
{
|
|
ICSOQCCKDAL.AddandEdit(ItemLot, Appconstr);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region delete
|
|
public static void delete(List<String> guidList)
|
|
{
|
|
ICSOQCCKDAL.delete(guidList);
|
|
}
|
|
#endregion
|
|
|
|
#region 获取检验方式
|
|
public static DataTable SearchData(string dsconn)
|
|
{
|
|
try
|
|
{
|
|
return ICSOQCCKGROUPDAL.SearchData(dsconn);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
public static DataTable SearchData(string EnumText, string dsconn)
|
|
{
|
|
try
|
|
{
|
|
return ICSOQCCKGROUPDAL.SearchData(EnumText, dsconn);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
#region 获取检验属性
|
|
public static DataTable SearchDataa(string dsconn)
|
|
{
|
|
try
|
|
{
|
|
return ICSOQCCKGROUPDAL.SearchDataa(dsconn);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
public static DataTable SearchDataa(string EnumText, string dsconn)
|
|
{
|
|
try
|
|
{
|
|
return ICSOQCCKGROUPDAL.SearchDataa(EnumText, dsconn);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
}
|
|
}
|