using Model;
|
using System.Collections;
|
using System.Collections.Generic;
|
using System.Data;
|
|
namespace BLL
|
|
{
|
public interface IDALUserInfo
|
{
|
bool IsExist(string name,string value);
|
bool IsExist(Hashtable ht);
|
bool Add(UserInfo model,string loginUser);
|
|
bool Update(UserInfo model);
|
|
bool Update(string UserCode,string Pwd,string UpdateUser);
|
|
bool Delete(string UserCode);
|
|
bool BatchDelete(string[] UserCode);
|
UserInfo GetModel(string username,string pwd);
|
|
UserInfo GetModel(string usercode);
|
IList<UserInfo> GetList(AjaxUserList Json,ref PageInfo pageInfo);
|
|
DataTable GetDataTable(string[] strWhere);
|
|
DataTable GetDataTable(int PageSize,int PageIndex,string strWhere);
|
|
|
List<LoginLog> GetLogInUserRecordList();
|
}
|
}
|