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