Beispiel #1
0
        /// <summary>
        /// 判断历史借阅是否超期
        /// </summary>
        /// <param name="stuID"></param>
        /// <param name="bookID"></param>
        /// <returns></returns>
        public bool judgeOverDateAll(string stuID, string bookID)
        {
            BorrowHistoryDAl dal = new BorrowHistoryDAl();

            return(dal.judgeOverDateNow(stuID, bookID));
        }
Beispiel #2
0
        /// <summary>
        /// 获得历史借阅的数量
        /// </summary>
        /// <param name="stuID"></param>
        /// <returns></returns>
        public int getBorrowAllCount(string stuID)
        {
            BorrowHistoryDAl dal = new BorrowHistoryDAl();

            return(dal.getBorrowAllCount(stuID));
        }
Beispiel #3
0
        /// <summary>
        /// 历史借阅
        /// </summary>
        /// <returns></returns>
        public List <ShowBorrowHistory> getListBorrowHisoryAll(string stuID)
        {
            BorrowHistoryDAl dal = new BorrowHistoryDAl();

            return(dal.getBookHistoryAll(stuID));
        }