using Model; using System.Collections.Generic; using System.Data; namespace BLL { public interface IDALMoveDetail { bool IsExist(string name, string value); bool Add(List model); bool Update(List model); bool Delete(List EMats); IList GetList(string OrdNo); DataTable GetDataTable(string[] strWhere); } }