using System.Collections.Generic; using System.Data; using Model; namespace BLL { public interface IDALDepartMent { IList GetList(); bool IsExist(AjaxDepartInfo model); bool Add(DepartMent model); bool Update(DepartMent model); bool BatchDelete(string[] list); DepartMent GetModel(string RoleNum); IList GetList(AjaxDepartList Json, ref PageInfo pageInfo); DataTable GetDataTable(string[] strWhere); } }