using Model; using System.Collections.Generic; using System.Data; namespace BLL { public interface IDALTask { bool IsExist(string name, string value); //bool IsExist(Hashtable ht); bool Add(PaTask model); //bool Add(MovePos model); //bool Add(CheckData model); bool Update(PaTask model); bool BatchDelete(string[] list); PaTask GetModel(string RoleNum); IList GetList(AjaxTaskList Json, ref PageInfo pageInfo); IList GetList(); DataTable GetDataTable(string[] strWhere); } }