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.
56 lines
1.7 KiB
56 lines
1.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using ICSSoft.Frame.Data.DAL;
|
|
using ICSSoft.Frame.Data.Entity;
|
|
|
|
|
|
namespace ICSSoft.Frame.Data.BLL
|
|
{
|
|
public class ICSLOTONWIPCheckBLL
|
|
{
|
|
public static void Add(ICSLOTONWIPCheck info, List<ICSLOTONWIPCheckDetail> list, string conn)
|
|
{
|
|
ICSLOTONWIPCheckDAL.Add(info, list, conn);
|
|
}
|
|
|
|
public static void AddPause(ICSLOTONWIPCheck info, ICSLOTONWIPCheckPause pause, string conn)
|
|
{
|
|
ICSLOTONWIPCheckDAL.AddPause(info, pause, conn);
|
|
}
|
|
|
|
public static void Add(List<ICSLOTONWIPCheck> list, string conn)
|
|
{
|
|
ICSLOTONWIPCheckDAL.Add(list, conn);
|
|
}
|
|
|
|
public static void AddNCR(List<ICSLOTONWIPCheckNCR> list, string conn)
|
|
{
|
|
ICSLOTONWIPCheckDAL.AddNCR(list, conn);
|
|
}
|
|
public static void AddNCR2(List<ICSLOTONWIPCheckNCR> list, string conn)
|
|
{
|
|
ICSLOTONWIPCheckDAL.AddNCR2(list, conn);
|
|
}
|
|
public static void AddNCROA(List<ICSLOTONWIPCheckNCR> list,DataTable dtOPs, string FLOW_ID, string source, string conn)
|
|
{
|
|
ICSLOTONWIPCheckDAL.AddNCROA(list,dtOPs, FLOW_ID,source, conn);
|
|
}
|
|
|
|
public static string GetFLOW_ID(string conn, string WorkPointCode)
|
|
{
|
|
return ICSLOTONWIPCheckDAL.GetFLOW_ID(conn, WorkPointCode);
|
|
}
|
|
public static void AddNCRNC(List<string> IDs, string conn)
|
|
{
|
|
ICSLOTONWIPCheckDAL.AddNCRNC(IDs, conn);
|
|
}
|
|
|
|
public static System.Data.DataTable QueryCheckInfo(string LotNo, string conn)
|
|
{
|
|
return ICSLOTONWIPCheckDAL.QueryCheckInfo(LotNo, conn);
|
|
}
|
|
}
|
|
}
|