资源简介

这是一款功能相对完整的学生综合测评源码,采用了典型的三层架构,比较适合作为课程设计或者毕业设计使用,感兴趣的朋友可以下载看看哦。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace BLL
{
    public class AdministratorBll
    {
        DAL.AdministratorDal dal = new DAL.AdministratorDal();
       
        // 管理员登录认证
        public bool Check(Model.Administrator ma)
        {
            
            try
            {
                return dal.Check(ma);
            }
            catch
            {
                //throw new Exception(ex.Message);
                return false;
            }
        }
      
        // 修改密码   
        public bool ChangeCode(string AdmNo string OldCode string NewCode)
        {
       
            try
            {
                return dal.ChangeCode(AdmNo OldCode NewCode);
            }
            catch 
            {
                return false;
            }
           
        }
        
    }
}

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

     文件        938  2013-05-24 08:48  XMStudentCePingMS\BLL\AdministratorBll.cs

     文件       8704  2014-09-22 22:37  XMStudentCePingMS\BLL\bin\Debug\BLL.dll

     文件      44544  2014-09-22 22:37  XMStudentCePingMS\BLL\bin\Debug\BLL.pdb

     文件      17920  2014-09-22 22:37  XMStudentCePingMS\BLL\bin\Debug\DAL.dll

     文件      46592  2014-09-22 22:37  XMStudentCePingMS\BLL\bin\Debug\DAL.pdb

     文件       5120  2014-09-22 22:37  XMStudentCePingMS\BLL\bin\Debug\DBUnility.dll

     文件      15872  2014-09-22 22:37  XMStudentCePingMS\BLL\bin\Debug\DBUnility.pdb

     文件       9728  2014-09-22 22:37  XMStudentCePingMS\BLL\bin\Debug\Model.dll

     文件      54784  2014-09-22 22:37  XMStudentCePingMS\BLL\bin\Debug\Model.pdb

     文件       2996  2013-05-24 00:30  XMStudentCePingMS\BLL\BLL(业务逻辑层).csproj

     文件        157  2013-05-03 15:19  XMStudentCePingMS\BLL\CLassBll.cs

     文件        162  2013-05-03 15:19  XMStudentCePingMS\BLL\ComRankingBll.cs

     文件       1828  2014-05-06 15:36  XMStudentCePingMS\BLL\FamilyInfo.cs

     文件       3887  2013-05-24 09:03  XMStudentCePingMS\BLL\GradeBll.cs

     文件       3498  2014-09-22 22:37  XMStudentCePingMS\BLL\obj\Debug\BLL(业务逻辑层).csproj.FileListAbsolute.txt

     文件      24067  2014-09-22 22:37  XMStudentCePingMS\BLL\obj\Debug\BLL(业务逻辑层).csprojResolveAssemblyReference.cache

     文件        820  2013-05-24 00:27  XMStudentCePingMS\BLL\obj\Debug\BLL.csproj.FileListAbsolute.txt

     文件       8704  2014-09-22 22:37  XMStudentCePingMS\BLL\obj\Debug\BLL.dll

     文件      44544  2014-09-22 22:37  XMStudentCePingMS\BLL\obj\Debug\BLL.pdb

     文件       6733  2014-09-22 22:35  XMStudentCePingMS\BLL\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       1356  2013-05-02 22:04  XMStudentCePingMS\BLL\Properties\AssemblyInfo.cs

     文件       4203  2013-05-24 09:02  XMStudentCePingMS\BLL\StudentBll.cs

     文件       2888  2013-05-24 08:56  XMStudentCePingMS\BLL\TeacherBll.cs

     文件       1658  2013-05-24 02:06  XMStudentCePingMS\DAL\AdministratorDal.cs

     文件      17920  2014-09-22 22:37  XMStudentCePingMS\DAL\bin\Debug\DAL.dll

     文件      46592  2014-09-22 22:37  XMStudentCePingMS\DAL\bin\Debug\DAL.pdb

     文件       5120  2014-09-22 22:37  XMStudentCePingMS\DAL\bin\Debug\DBUnility.dll

     文件      15872  2014-09-22 22:37  XMStudentCePingMS\DAL\bin\Debug\DBUnility.pdb

     文件       9728  2014-09-22 22:37  XMStudentCePingMS\DAL\bin\Debug\Model.dll

     文件      54784  2014-09-22 22:37  XMStudentCePingMS\DAL\bin\Debug\Model.pdb

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

评论

共有 条评论