BookBusiness.cs
上传用户:gooyliu
上传日期:2018-09-29
资源大小:5816k
文件大小:1k
源码类别:

.net编程

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Data;
  5. using System.Data.SqlClient;
  6. using DataAccessLayer;
  7. namespace BusinessLogicLayer
  8. {
  9.    public  class BookBusiness
  10.     {  
  11.        
  12.        DataAccessLayer.BookBusiness bb = new DataAccessLayer.BookBusiness();
  13.       
  14.        public int CheckBookByID(string bookID)
  15.        {
  16.         
  17.            return bb.CheckBookByID(bookID);
  18.        }
  19.        public static  int LendBook(string readerID, string bookID)
  20.        {
  21.            int val = DataAccessLayer.BookBusiness.LendBook(readerID, bookID);
  22.            return val;
  23.        }
  24.        public int ReturnBook(string bookID)
  25.        {
  26.            return bb.ReturnBook(bookID);
  27.            
  28.        }
  29.     }
  30. }