using Model; using System.Collections.Generic; using System.Data; namespace BLL { public interface IDALErpOutDetail { bool IsExist(string name, string value); //bool IsExist(Hashtable ht); bool Add(List model); bool Update(List model); bool Delete(List EMats); ErpMat GetModel(string RoleNum); IList GetList(AjaxErpOutInfo Json, ref PageInfo pageInfo); IList GetList(string OrdNo); DataTable GetDataTable(string[] strWhere); DataTable GetPrintData(string OrdNo); } }