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<Customer> GetList(AjaxCustomerList Json, ref PageInfo pageInfo);
|
IList<Customer> GetList();
|
|
DataTable GetDataTable(string[] strWhere);
|
|
bool UpdateEnable(string[] CusNum, string Enable);
|
}
|
}
|