You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
429 B

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