using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FangYar.IDAL.TBL { public interface SysSocietyIDAL { /// /// 根据ID获取model /// FangYar.Model.TBL.TBL_SYS_SOCIETY_Model GetModelByID(string ID); /// /// 添加菜单 /// bool Add(FangYar.Model.TBL.TBL_SYS_SOCIETY_Model model); /// /// 删除 /// bool Delete(string IDList); /// /// 编辑 /// bool Edit(FangYar.Model.TBL.TBL_SYS_SOCIETY_Model model); int Count(string where); /// /// 分页 /// /// /// /// /// void QueryProc(int PageIndex, int PageSize, string strwhere, string order); List QueryList(int PageIndex, int PageSize, string strwhere, string order); } }