using Model; using System.Collections.Generic; namespace BLL { public interface IDALErpDetail { //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(string OrdNo); //DataTable GetDataTable(string[] strWhere); } }