You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
992 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Estsh.Web.Dal;
using Estsh.Web.Util;
using System.Collections;
using System.Data;
namespace Estsh.Core.Services
{
public class ProcessOutputQueryService
{
ProcessOutputQueryDal dal = new ProcessOutputQueryDal(RemotingProxyProvider._remotingProxy);
public ArrayList GetPdlineName()
{
return dal.GetPdlineName();
}
public ArrayList GetProcessName()
{
return dal.GetProcessName();
}
public ArrayList GetShiftName()
{
return dal.GetShiftName();
}
public DataTable GetPartInfo(Pager pager, ref int totalCount)
{
return dal.GetPartInfo(pager, ref totalCount);
}
public DataTable GetAll(string aWhere, Pager pager, ref int totalCount)
{
return dal.GetAll(aWhere, pager, ref totalCount);
}
}
}