15 lines
402 B
15 lines
402 B
3 years ago
|
using System;
|
||
|
using Pingchuan.BeijingSafeguard.DAL;
|
||
|
using Pingchuan.BeijingSafeguard.Model;
|
||
|
|
||
|
namespace Pingchuan.BeijingSafeguard.BLL
|
||
|
{
|
||
|
public class ComputeBLL
|
||
|
{
|
||
|
public static Pagination<Statistic> Statistics(DateTime fromTime, DateTime toTime, int pageIndex, int pageSize)
|
||
|
{
|
||
|
return ComputeDAL.Statistics(fromTime, toTime, pageIndex, pageSize);
|
||
|
}
|
||
|
}
|
||
|
}
|