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.
42 lines
1.2 KiB
42 lines
1.2 KiB
2 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Reflection;
|
||
|
using System.Text;
|
||
|
using MESClassLibrary.BLL.Log;
|
||
|
using MESClassLibrary.DAL.Injection;
|
||
|
|
||
|
namespace MESClassLibrary.BLL.Injection
|
||
|
{
|
||
|
public class BarCodeRecordBLL
|
||
|
{
|
||
|
BarCodeRecordDAL da=new BarCodeRecordDAL();
|
||
|
|
||
|
public string SearchInfoAll(string page, string pagesize, string stationID, string barcode, string startTime,string endTime)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
return da.SearchInfoAll(page, pagesize, stationID, barcode, startTime, endTime);
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
LogErrBLL.AddInfo(ex.ToString(),MethodBase.GetCurrentMethod());
|
||
|
return "";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public string SearchInfoByRepeat(string page, string pagesize, string startTime, string endTime)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
return da.SearchInfoByRepeat(page, pagesize,startTime, endTime);
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod());
|
||
|
return "";
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|