29 lines
656 B
29 lines
656 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using MESClassLibrary.BLL.Log;
|
|
using MESClassLibrary.DAL;
|
|
|
|
namespace MESClassLibrary.BLL.Injection
|
|
{
|
|
public class PLCMouldBLL
|
|
{
|
|
PLCMouldDAL da=new PLCMouldDAL();
|
|
|
|
public DataTable SearchMould(string station)
|
|
{
|
|
try
|
|
{
|
|
return da.SearchMould(station);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod());
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|