using System.Collections; using System.Collections.Generic; using System.Data; using Model; namespace BLL { public interface IDALMatNo { bool IsExist(string MatNo, string value); bool IsExist(Hashtable ht); bool IsExist(AjaxMatInfo model); bool Add(Material model, string loginUser); bool Update(Material model); bool Delete(string MatNo); bool AuditMat(string[] MatNo,string AuditModel,string user); bool BatchDelete(string[] MatNo,string loginUser); bool IsCheckMatNo(string MatNo); Material GetModel(string guid); IList GetList(string MatNo); IList GetList(AjaxMatList Json, ref PageInfo pageInfo); DataTable GetDataTable(string[] strWhere); DataTable GetDataTable(int PageSize, int PageIndex, string strWhere); } }