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.
58 lines
1.4 KiB
C#
58 lines
1.4 KiB
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 XTStockDataQueryService
|
|
{
|
|
XTStockDataQueryDal dal = new XTStockDataQueryDal(RemotingProxyProvider._remotingProxy);
|
|
|
|
/// <summary>
|
|
/// 汇总
|
|
/// </summary>
|
|
/// <param name="aWhere"></param>
|
|
/// <returns></returns>
|
|
public DataTable GetStockData(string aWhere, Pager pager, ref int totalCount)
|
|
{
|
|
return dal.GetStockData(aWhere, pager, ref totalCount);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 明细
|
|
/// </summary>
|
|
/// <param name="aWhere"></param>
|
|
/// <returns></returns>
|
|
public DataTable GetDetailData(string aWhere,Pager pager,ref int totalCount2)
|
|
{
|
|
return dal.GetDetailData(aWhere, pager,ref totalCount2);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 配置集合
|
|
/// </summary>
|
|
/// <returns>数据集</returns>
|
|
public ArrayList GetModelName(string typeName)
|
|
{
|
|
return dal.GetModelName( typeName);
|
|
}
|
|
|
|
/// <summary>
|
|
///车型集合
|
|
/// </summary>
|
|
/// <returns>数据集</returns>
|
|
public ArrayList GetTypeName()
|
|
{
|
|
return dal.GetTypeName();
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|