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);
///
/// 电检主表
///
///
///
///
///
public DataTable XTGetDjc(string whereStr, Pager pager, ref int totalCount)
{
return dal.XTGetDjc(whereStr, pager, ref totalCount);
}
///
///
///
///
///
public DataTable GetSumDjc(string aWhere)
{
return dal.GetSumDjc(aWhere);
}
}
}