• 大小: 4.77MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-18
  • 语言: C#
  • 标签:

资源简介

用C#写的图书管理系统,三层架构,使用SQL Server数据库(2016),可以实现图书、读者的增删改查,借还书、续借以及借阅记录的查询。UI设计精美,代码注释详细,附数据库文件及sql程序。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Model;
using DAL;
using System.Data;

namespace BLL
{
    public class Admin_BLL
    {
        Admin_DAL aa = new Admin_DAL();

        //删除管理员
        public int deleteAdmin(String LoginId)
        {
            return aa.deleteAdmin(LoginId);
        }
        //修改管理员
        public int ExitAdmin(Admin a)
        {
            return aa.ExitAdmin(a);
        }
        //添加管理员
        public int AddAdmin(Admin a)
        {
            return aa.AddAdmin(a);
        }
        public DataSet selectAdmin()
        {
            return aa.selectAdmin();
        }

        public int Scalar(Admin a)
        {
            return aa.Scalar(a);
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       23358  2018-01-21 18:50  Library.sql
     目录           0  2018-01-19 18:12  Library\
     目录           0  2018-01-19 18:12  Library\.vs\
     目录           0  2018-01-18 22:30  Library\.vs\Library\
     目录           0  2018-01-18 22:30  Library\.vs\Library\v14\
     文件      178688  2018-01-21 16:12  Library\.vs\Library\v14\.suo
     目录           0  2018-01-20 21:32  Library\BLL\
     文件         860  2018-01-20 21:32  Library\BLL\Admin_BLL.cs
     目录           0  2018-01-18 22:29  Library\BLL\bin\
     目录           0  2018-01-18 22:29  Library\BLL\bin\Debug\
     文件        9216  2018-01-21 11:04  Library\BLL\bin\Debug\BLL.dll
     文件       36352  2018-01-21 11:04  Library\BLL\bin\Debug\BLL.pdb
     文件        6656  2018-01-19 20:03  Library\BLL\bin\Debug\Common.dll
     文件       13824  2018-01-19 20:03  Library\BLL\bin\Debug\Common.pdb
     文件       37888  2018-01-21 11:04  Library\BLL\bin\Debug\DAL.dll
     文件       48640  2018-01-21 11:04  Library\BLL\bin\Debug\DAL.pdb
     文件       11264  2018-01-20 16:11  Library\BLL\bin\Debug\Model.dll
     文件       38400  2018-01-20 16:11  Library\BLL\bin\Debug\Model.pdb
     目录           0  2016-09-03 10:40  Library\BLL\bin\Release\
     文件        3246  2016-09-06 22:24  Library\BLL\BLL.csproj
     文件        2538  2016-09-05 11:07  Library\BLL\BookInfo_BLL.cs
     文件         990  2016-09-05 10:49  Library\BLL\BookType_BLL.cs
     文件        1760  2016-09-05 10:53  Library\BLL\BorrowReturn_BLL.cs
     文件         886  2016-09-06 16:17  Library\BLL\Class_BLL.cs
     文件        1006  2016-09-06 16:13  Library\BLL\Department_BLL.cs
     目录           0  2018-01-18 22:29  Library\BLL\obj\
     目录           0  2018-01-21 11:04  Library\BLL\obj\Debug\
     文件        2351  2018-01-20 16:12  Library\BLL\obj\Debug\BLL.csproj.FileListAbsolute.txt
     文件       19511  2018-01-21 11:04  Library\BLL\obj\Debug\BLL.csprojResolveAssemblyReference.cache
     文件        9216  2018-01-21 11:04  Library\BLL\obj\Debug\BLL.dll
     文件       36352  2018-01-21 11:04  Library\BLL\obj\Debug\BLL.pdb
............此处省略203个文件信息

评论

共有 条评论