using System.Collections; using System.Collections.Generic; using System.Data; using Model; namespace BLL { public interface IDALUnit { bool Add(Unit model, string loginUser); bool Update(Unit model, string loginUser); bool Delete(string UnitNum); bool AnditUnit(string[] UnitNum, string AuditModel, string User); bool BatchDelete(string[] UnitNum); Unit GetModel(string UnitNum); IList GetUnitList(); IList GetList(AjaxUnitList Json, ref PageInfo pageInfo); DataTable GetDataTable(string[] strWhere); DataTable GetDataTable(int PageSize, int PageIndex, string strWhere); } }