• 大小: 1.09MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-16
  • 语言: C#
  • 标签: c#  

资源简介

一个简单的图书管理系统,可供参考。基于VS2008,采用三层架构,数据库用的是SQL2005

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.Serialization;
namespace LibarayManager.Business.Authentication
{
    /// 
/// 认证异常管理
/// 

    public class AuthenticationException :ApplicationException
    {
        #region 构造函数
                /// 
        /// 默认构造函数
        /// 

        public AuthenticationException()
        { }
        /// 
        /// 认证带有异常信息的构造函数
        /// 

        /// 附加信息
        public AuthenticationException(string message)
            : base(message)
        { }

        /// 
        /// 认证带有异常信息内部异常对象的构造函数
        /// 

        /// 异常信息
        /// 内部异常对象
        public AuthenticationException(string message System.Exception innerException)
            : base(message innerException)
        { }      
                /// 
        /// 带有序列化和流的构造函数
        /// 

        /// 
        /// 
        public AuthenticationException(SerializationInfo info StreamingContext context)
           : base(info context)
        { }
        #endregion

        #region 异常方法

        /// 
        /// 无效参数异常
        /// 

        /// 异常信息
        /// 异常对象
       internal static  AuthenticationException InvalidArgument(string message)
        {
            return new AuthenticationException(message);
        }

        /// 
        /// 非法操作
        /// 

        /// 异常信息
        /// 异常对象
       internal static  AuthenticationException InvalidOperation(string message)
        {
            return new AuthenticationException(message);
        }

        /// 
        /// 密码错误
        /// 

        /// 异常对象
       internal static  AuthenticationException WrongPassWord()
        {
            return new AuthenticationException(“帐户密码错误“);
        }

        /// 
        /// 帐户是否存在
        /// 

        /// 帐号
        /// 异常对象
       internal static  AuthenticationException UserExist(string userName)
        {
            return new AuthenticationException(string.Format(“帐户{0}已存在“ userName));
        }

        /// 
        /// 帐户是否不存在
        /// 

        /// 帐号
        /// 异常对象
        internal static AuthenticationException UserNotExist(string userName)
        {
            return new AuthenticationException(string.Format(“帐户{0}不存在“ userName));
        }

        #endregion
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2342  2010-06-13 11:46  图书管理系统\LibarayManager\LibarayManager.sln

    ..A..H.    164864  2011-02-22 22:42  图书管理系统\LibarayManager\LibarayManager.suo

     文件       1666  2010-06-21 12:20  图书管理系统\LibarayManager\WinForm\CommonInfo.cs

     文件        357  2010-06-07 17:11  图书管理系统\LibarayManager\WinForm\Form1.cs

     文件       1167  2010-06-07 17:11  图书管理系统\LibarayManager\WinForm\Form1.Designer.cs

     文件      22820  2010-06-21 16:46  图书管理系统\LibarayManager\WinForm\frmAdmin.cs

     文件      20416  2010-06-21 16:23  图书管理系统\LibarayManager\WinForm\frmAdmin.Designer.cs

     文件      10527  2010-06-21 16:23  图书管理系统\LibarayManager\WinForm\frmAdmin.resx

     文件       5531  2010-06-21 16:27  图书管理系统\LibarayManager\WinForm\frmBookAdmin.cs

     文件      11702  2010-06-21 16:24  图书管理系统\LibarayManager\WinForm\frmBookAdmin.Designer.cs

     文件       6188  2010-06-21 16:24  图书管理系统\LibarayManager\WinForm\frmBookAdmin.resx

     文件       5475  2010-06-20 22:48  图书管理系统\LibarayManager\WinForm\frmBookBorrow.cs

     文件       9401  2010-06-20 22:48  图书管理系统\LibarayManager\WinForm\frmBookBorrow.Designer.cs

     文件       6016  2010-06-20 22:48  图书管理系统\LibarayManager\WinForm\frmBookBorrow.resx

     文件       8921  2010-06-21 14:05  图书管理系统\LibarayManager\WinForm\frmControlAccount.cs

     文件      15490  2010-06-21 11:23  图书管理系统\LibarayManager\WinForm\frmControlAccount.Designer.cs

     文件       6568  2010-06-21 11:23  图书管理系统\LibarayManager\WinForm\frmControlAccount.resx

     文件      14355  2010-06-20 23:56  图书管理系统\LibarayManager\WinForm\frmControlBook.cs

     文件      28543  2010-06-20 22:48  图书管理系统\LibarayManager\WinForm\frmControlBook.Designer.cs

     文件       9700  2010-06-20 22:48  图书管理系统\LibarayManager\WinForm\frmControlBook.resx

     文件      10879  2010-06-20 22:48  图书管理系统\LibarayManager\WinForm\frmControlPart.cs

     文件      15421  2010-06-20 22:48  图书管理系统\LibarayManager\WinForm\frmControlPart.Designer.cs

     文件       7120  2010-06-20 22:48  图书管理系统\LibarayManager\WinForm\frmControlPart.resx

     文件      11288  2010-06-20 22:48  图书管理系统\LibarayManager\WinForm\frmControlsort.cs

     文件      18215  2010-06-20 22:48  图书管理系统\LibarayManager\WinForm\frmControlsort.Designer.cs

     文件       7488  2010-06-20 22:48  图书管理系统\LibarayManager\WinForm\frmControlsort.resx

     文件      11184  2010-06-20 23:51  图书管理系统\LibarayManager\WinForm\frmControlUser.cs

     文件      19458  2010-06-20 22:48  图书管理系统\LibarayManager\WinForm\frmControlUser.Designer.cs

     文件       7856  2010-06-20 22:48  图书管理系统\LibarayManager\WinForm\frmControlUser.resx

     文件       6649  2010-06-21 16:28  图书管理系统\LibarayManager\WinForm\frmMain.cs

............此处省略165个文件信息

评论

共有 条评论