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