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.

55 lines
1.8 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
using Estsh.Web.Util;
using Estsh.DAL;
using System.Data;
/***************************************************************************************************
*
* 作者:何存根
* 创建时间2014.06.17
* 描述报表模块条码上下线查询BLL
*
* *************************************************************************************************/
namespace Estsh.BLL
{
public class OutPDLineQueryService
{
OutPDLineQueryDal dal = new OutPDLineQueryDal(RemotingProxyProvider._remotingProxy);
/// <summary>
/// 产线
/// </summary>
/// <returns>数据集</returns>
public ArrayList GetPDLineName()
{
return dal.GetPDLineName();
}
/// <summary>
/// 根据用户选择的条件查找汇总数据
/// </summary>
/// <param name="wheres">筛选条件</param>
/// <returns>获取汇总表</returns>
public DataTable GetSummary(string wheres, Pager pager, ref int totalCount)
{
return dal.GetSummary(wheres, pager,ref totalCount);
//return DataTypeConvert.NewObject.DataTableToArrayList(dt);
}
/// <summary>
/// 根据用户选择的条件查找明细数据
/// </summary>
/// <param name="wheres">筛选条件</param>
/// <param name="sortStr">排序条件</param>
/// <returns>获取明细表</returns>
public DataTable GetAll(string wheres, Pager pager,ref int totalCount)
{
return dal.GetAll(wheres, pager, ref totalCount);
//return DataTypeConvert.NewObject.DataTableToArrayList(dt);
}
}
}