using Model; using System.Collections.Generic; using System.Data; namespace BLL { public interface IDALReverse { bool IsExist(string name, string value); //bool IsExist(Hashtable ht); bool Add(Reverse model); bool Update(Reverse model); bool BatchDelete(string[] list); Reverse GetModel(string RoleNum); IList GetList(AjaxReverseList Json, ref PageInfo pageInfo); IList GetList(); DataTable GetDataTable(string[] strWhere); } }