using System; using System.Collections.Generic; using System.Linq; using System.Web; using Estsh.Web.Util; using System.Collections; using Estsh.Web.Dal; using System.Data; namespace Estsh.Core.Services { public class SeatAliveTimeSpanService { private SeatAliveTimeSpanDal dal = new SeatAliveTimeSpanDal(RemotingProxyProvider._remotingProxy); public Hashtable GetSeatType() { return dal.GetSeatType(); } public Hashtable GetTimeSpanType() { return dal.GetTimeSpanType(); } public DataTable GetAliveTimeInfo( string startTime, string endTime, string startSN, string endSN, string seatType, string subSeatTye, string gapType, string sortType, int topN ) { return dal.GetAliveTimeInfo(startTime, endTime, startSN, endSN, seatType, subSeatTye, gapType, sortType, topN); } } }