using System; using System.Collections.Generic; using System.Linq; using System.Text; using FangYar.Model.TBL; namespace FangYar.BLL.TBL { public class SysGroupBLL { private static readonly IDAL.TBL.SysGroupIDAL dal = FangYar.DALFactory.Factory.GetSysGroupDAL(); /// /// 根据ID获取实体对象 /// public TBL_SYS_GROUP_Model GetModelByID(string id) { return dal.GetModelByID(id); } public bool Add(TBL_SYS_GROUP_Model model) { return dal.Add(model); } public bool Edit(TBL_SYS_GROUP_Model model) { return dal.Edit(model); } public bool Delete(string IDList) { return dal.Delete(IDList); } } }