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<OrdType> GetList(AjaxOrdTypeList Json, ref PageInfo pageInfo);
|
IList<OrdType> GetList();
|
|
DataTable GetDataTable(string[] strWhere);
|
|
|
}
|
}
|