using Model; using System.Collections.Generic; namespace BLL { public interface IDALCheckDetail { bool IsExist(string name, string value); bool Add(List model); bool Update(List model); bool Delete(List EMats); IList GetList(string OrdNo); } }