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
694 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Estsh.Web.Util;
using Estsh.Web.Dal;
using System.Data;
using System.Collections;
namespace Estsh.BLL
{
public class YYEDIProdOrderService
{
YYEDIProdOrderDal dal = new YYEDIProdOrderDal(RemotingProxyProvider._remotingProxy);
/// <summary>
/// 汇总
/// </summary>
/// <param name="aWhere"></param>
/// <returns></returns>
public DataTable GetYYEDIProdData(string aWhere, Pager pager, ref int totalCount)
{
return dal.GetYYEDIProdData(aWhere, pager, ref totalCount);
}
}
}