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.
 
 
 
 

26 lines
573 B

using System;
using System.Collections.Generic;
using Pingchuan.BeijingSafeguard.DAL;
using Pingchuan.BeijingSafeguard.Model;
namespace Pingchuan.BeijingSafeguard.BLL
{
public class ConfigBLL
{
public static int Update(Config config)
{
return ConfigDAL.Update(config);
}
public static List<Config> Query(int pageIndex, int pageSize)
{
return ConfigDAL.Query(pageIndex, pageSize);
}
public static List<Config> All()
{
return ConfigDAL.All();
}
}
}