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.
42 lines
1.0 KiB
42 lines
1.0 KiB
9 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace FangYar.BLL.TBL
|
||
|
{
|
||
|
public class SysGroupUsersBLL
|
||
|
{
|
||
|
private static readonly FangYar.IDAL.TBL.SysGroupUsersIDAL dal = FangYar.DALFactory.Factory.GetSysGroupUsersDAL();
|
||
|
|
||
|
/// <summary>
|
||
|
/// 根据ID获取model
|
||
|
/// </summary>
|
||
|
public FangYar.Model.TBL.TBL_SYS_GROUPUSERS_Model GetModelByID(string ID)
|
||
|
{
|
||
|
return dal.GetModelByID(ID);
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// 添加
|
||
|
/// </summary>
|
||
|
public bool Add(FangYar.Model.TBL.TBL_SYS_GROUPUSERS_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_GROUPUSERS_Model model)
|
||
|
{
|
||
|
return dal.Edit(model);
|
||
|
}
|
||
|
}
|
||
|
}
|