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