Beispiel #1
0
        ///<summary>
        ///get all bookInfo by List
        ///</summary>
        public List <BookInfoModel> getAllBookInfoList(int pageIndex)
        {
            BookInfoDAL dal = new BookInfoDAL();

            return(dal.getAllBookInfoList((pageIndex - 1) * 20, pageIndex * 20));
        }