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

.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. using Model;
  8. namespace BusinessLogicLayer
  9. {
  10.     public class bllBookType
  11.     {
  12.         dalBookType DALbt=new dalBookType ();
  13.         public DataSet GetBookType()
  14.         {
  15.             return DALbt.GetDS();
  16.         }
  17.     }
  18. }