|
|
|
using System;
|
|
|
|
using Pingchuan.BeijingSafeguard.DAL;
|
|
|
|
using Pingchuan.BeijingSafeguard.Model;
|
|
|
|
|
|
|
|
namespace Pingchuan.BeijingSafeguard.BLL
|
|
|
|
{
|
|
|
|
public class ComputeBLL
|
|
|
|
{
|
|
|
|
public static Pagination<Statistic> Statistics(string typeCode, DateTime fromTime, DateTime toTime, int pageIndex, int pageSize)
|
|
|
|
{
|
|
|
|
return ComputeDAL.Statistics(typeCode, fromTime, toTime, pageIndex, pageSize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|