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<StorePalno> GetList(AjaxBasicList Json, ref PageInfo pageInfo);
|
|
IList<Store> GetList(AjaxStoreList Json, ref PageInfo pageInfo);
|
|
IList<StoreNullPalno> GetList(AjaxNullPalnoList Json, ref PageInfo pageInfo);
|
|
|
IList<Store> GetList();
|
|
DataTable GetDataTable(string[] strWhere);
|
|
|
}
|
}
|