26 lines
573 B
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();
|
|
}
|
|
}
|
|
}
|