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() { try { return da.SearchMould(); } catch (Exception ex) { LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); return null; } } } }