using Model; using System.Collections.Generic; using System.Data; namespace BLL { public interface IDALErpInDetail { bool IsExist(string name, string value); bool Delete(List EMats); IList GetList(string OrdNo); IList GetList(AjaxErpInList models,ref PageInfo pageInfo); DataTable GetDataTable(string[] strWhere); DataTable GetPrintData(string OrdNo); } }