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.
36 lines
973 B
36 lines
973 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace FangYar.BLL.TBL
|
|
{
|
|
public class GetGroupRulesBLL
|
|
{
|
|
private static readonly FangYar.IDAL.TBL.GroupRulesIDAL dal = FangYar.DALFactory.Factory.GetGroupRulesDAL();
|
|
/// <summary>
|
|
/// 根据ID获取model
|
|
/// </summary>
|
|
public FangYar.Model.TBL.TBL_SYS_GROUPRULES_Model GetModelByID(string ID) {
|
|
return dal.GetModelByID(ID);
|
|
}
|
|
/// <summary>
|
|
/// 添加
|
|
/// </summary>
|
|
public bool Add(FangYar.Model.TBL.TBL_SYS_GROUPRULES_Model model) {
|
|
return dal.Add(model);
|
|
}
|
|
/// <summary>
|
|
/// 删除
|
|
/// </summary>
|
|
public bool Delete(string IDList) {
|
|
return dal.Delete(IDList);
|
|
}
|
|
/// <summary>
|
|
/// 编辑
|
|
/// </summary>
|
|
public bool Edit(FangYar.Model.TBL.TBL_SYS_GROUPRULES_Model model) {
|
|
return dal.Edit(model);
|
|
}
|
|
}
|
|
}
|
|
|