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.
48 lines
1015 B
C#
48 lines
1015 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Estsh.Web.Dal;
|
|
using Estsh.Web.Util;
|
|
using System.Collections;
|
|
using System.Data;
|
|
|
|
|
|
namespace Estsh.Core.Services
|
|
{
|
|
public class XTTestDataService
|
|
{
|
|
XTTestDataDal dal = new XTTestDataDal(RemotingProxyProvider._remotingProxy);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 电检主表
|
|
/// </summary>
|
|
/// <param name="whereStr"></param>
|
|
/// <param name="pager"></param>
|
|
/// <param name="totalCount"></param>
|
|
/// <returns></returns>
|
|
public DataTable XTGetDjc(string whereStr, Pager pager, ref int totalCount)
|
|
{
|
|
return dal.XTGetDjc(whereStr, pager, ref totalCount);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="aWhere"></param>
|
|
/// <returns></returns>
|
|
public DataTable GetSumDjc(string aWhere)
|
|
{
|
|
return dal.GetSumDjc(aWhere);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|