using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//Ref:
using System.Data;
using QMAPP.BoraUpgrade.DAL;
using QMAPP.BoraUpgrade.Entity;
namespace QMAPP.BoraUpgrade.BLL
{
public class WorkCellHelper
{
#region 根据当前工位码提取前序工位处理码
///
/// 根据当前工位码提取前序工位处理码
///
///
public static string GetPreWorkCellProccessCode(string currWorkCellCode,int _Count,int OutTime,string metairal_type)
{
return QMAPP.BoraUpgrade.DAL.WorkCellDAL.GetPreWorkCellProccessCode(currWorkCellCode, _Count, OutTime, metairal_type);
}
#endregion
}
}