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.
33 lines
779 B
C#
33 lines
779 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Estsh.Web.Util;
|
|
using Estsh.Web.Dal;
|
|
using System.Collections;
|
|
using System.Data;
|
|
|
|
namespace Estsh.Core.Services
|
|
{
|
|
public class ProdQueueQueryDalService
|
|
{
|
|
public ProdQueueQueryDal Dal = new ProdQueueQueryDal(RemotingProxyProvider._remotingProxy);
|
|
|
|
/// <summary>
|
|
/// 获取页面上要显示的的数据
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public ArrayList GetAll(ref Pager pager)
|
|
{
|
|
DataTable dt = Dal.GetAll(ref pager);
|
|
return DataTypeConvert.NewObject.DataTableToArrayList(dt);
|
|
}
|
|
|
|
|
|
public int getMenuCount()
|
|
{
|
|
return Dal.getCountWhere();
|
|
}
|
|
}
|
|
}
|