string readerReaderRoleId = "",
int? maximumRows = null,
int? startRowIndex = null ) 根据借阅号、用户名、性别、读者状态、借阅类型查询读者信息(可分页)
FindReadersCount (
string readerCode = "",
string readerName = "",
int? readerGender = null,
int? readerStatus = null,
string readerReaderRoleId = "" ) 根据借阅号、用户名、性别、读者状态、借阅类型查询符合条件的读者信息条数
FindReaderById (string readerId = "" ) 根据读者ID查找读者信息
FindReaderByCode (
string readerCode = "" ) 根据借阅号查询读者信息
FindReaderStatusByReaderCode (
string readerCode = "" ) 根据借阅号查询读者状态
FindReaderIdByReaderCode (
string readerCode = "" ) 根据借阅号查询读者ID
FindReaderRoles () 查询所有的借阅类型
ChangeReaderStatus (
string readerId = "",
string readerStatus = "" ) 根据读者ID变更读者状态
CreateLend (
string lendId = "",
string lendReaderId = "",
string lendBookId = "",
global::System.DateTime? lendLendDate = null,
global::System.DateTime? lendLastDate = null,
int? lendLateTimes = null ) 根据借阅ID、借阅读者ID、借阅图书ID、借阅时间、借阅终止日期、延期次数创建借阅信息
UpdateLend (
string lendId = "",
string lendReaderId = "",
string lendBookId = "",
global::System.DateTime? lendLendDate = null,
global::System.DateTime? lendLastDate = null,
int? lendLateTimes = null ) 根据借阅ID、借阅读者ID、借阅图书ID、借阅时间、借阅终止日期、延期次数更新借阅信息
DeleteLend (string lendId = "" ) 根据借阅ID删除借阅信息
FindLendsByReaderId (
string readerId = "" ) 根据读者ID查询读者的借阅信息
FindLendByLendId (string lendId = "" ) 根据借阅ID查询借阅信息
FindLendsByBookId (
string bookId = "",
int? maximumRows = null,
int? startRowIndex = null ) 根据图书ID查询图书的被借阅信息
FindLendsByBookIdCount (
string bookId = "" ) 根据图书ID查询图书的被借阅次数
FindReaderLendCount (
string lendReaderId = "" ) 根据借阅读者ID查询读者借阅图书数量
UpdateReaderStatusByReaderId (
string readerId = "",
int? readerStatus = null ) 根据读者ID更新读者借阅状态
DelayBook (
string lendId = "",
int? lendLateTimes = null,
global::System.DateTime? lendLastDate = null ) 根据借阅ID完成图书延期操作
FindLendsByReaderCode (
string readerCode = "" ) 根据借阅号查询读者借阅信息
FindLendCountGroupType (
global::System.DateTime? startDate = null,
global::System.DateTime? endDate = null )
根据起始查询日期与终止查询日期查询该时间范围内的暗图书类型分组统计的图书借阅次数
该类对所有用户信息进行基本操作的数据访问层方法如表5.5所示。
表 5.5 BYSJ.DataAccess.UserProvider
方法名(变量) 作用
ExistsUser (
string userName = "",
string userPassword = "" ) 根据用户名、密码查询用户是否存在 基于ASP.NET的图书管理系统+流程图+ER图(23):http://www.youerw.com/jisuanji/lunwen_580.html