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.
42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
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);
|
|
}
|
|
}
|
|
}
|