• 大小: 6.75MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-01
  • 语言: C#
  • 标签: 招聘网站  

资源简介

招聘网站( vs2005+sql2008) 用n层架构c#开发的东东

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;
using ypxt.IDAL;
using ypxt.MODEL;
using ypxt.DALFactory;

namespace ypxt.BLL
{
    public class BLLAdmin
    {
        //查询所有管理员信息
        public static IList GetAllAdmin()
        {
            IAdmin Admin = FactoryAdmin.create();
            return Admin.getAllAdmin();
        }

        //根据ID删除一条管理员信息
        public static bool DeleteAdmininfo(int adminID)
        {
            IAdmin dalAdmin = DALFactory.FactoryAdmin.create();
            return dalAdmin.deleteAdmininfo(adminID);
        }

        //根据用户名查询是否被占用
        public static bool SelectAdmininfo(string adminName)
        {
            IAdmin selAdmin = DALFactory.FactoryAdmin.create();
            return selAdmin.selectAdmininfo(adminName);
        }

        //添加新的管理员
        public static bool AddAdmininfo(Admininfo NewAdmininfo)
        {
            IAdmin addAdmin = DALFactory.FactoryAdmin.create();
            return addAdmin.addAdmininfo(NewAdmininfo);
        }

        //根据ID修改一条管理员信息
        public static bool UpdateAdmininfo(MODEL.Admininfo admininfo)
        {
            IAdmin updAdmin = DALFactory.FactoryAdmin.create();
            return updAdmin.updateAdmininfo(admininfo);
        }

        //验证登陆并获取用户信息
        public static IList GetAdminLogin(MODEL.Admininfo admininfo)
        {
            IAdmin selLogin = DALFactory.FactoryAdmin.create();
            return selLogin.getAdminLogin(admininfo);
        }

        public static IList selec(int pagesize out int total)
       {
           IAdmin wantlist = FactoryAdmin.create();
           return wantlist.selec(pagesize out total);//.ss.(count);
           //return null;
       }
    }
}

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

     文件      18432  2008-11-30 09:24  ypxt\BLL\bin\Debug\ypxt.BLL.dll

     文件     105984  2008-11-30 09:24  ypxt\BLL\bin\Debug\ypxt.BLL.pdb

     文件       9216  2008-11-20 22:49  ypxt\BLL\bin\Debug\ypxt.DALFactory.dll

     文件      48640  2008-11-20 22:49  ypxt\BLL\bin\Debug\ypxt.DALFactory.pdb

     文件      11776  2008-11-20 22:49  ypxt\BLL\bin\Debug\ypxt.IDAL.dll

     文件       7680  2008-11-20 22:49  ypxt\BLL\bin\Debug\ypxt.IDAL.pdb

     文件      38912  2008-11-20 22:49  ypxt\BLL\bin\Debug\ypxt.MODEL.dll

     文件     216576  2008-11-20 22:49  ypxt\BLL\bin\Debug\ypxt.MODEL.pdb

     文件       4402  2008-11-30 09:24  ypxt\BLL\BLL.csproj

     文件        269  2008-11-12 16:16  ypxt\BLL\BLL.csproj.vspscc

     文件       1939  2008-11-12 16:16  ypxt\BLL\BLLAdmin.cs

     文件        162  2008-11-12 16:16  ypxt\BLL\BLLAdminAccount.cs

     文件        986  2008-11-20 09:45  ypxt\BLL\BLLAdvertising.cs

     文件       1569  2008-11-12 16:16  ypxt\BLL\BLLAffiche.cs

     文件        741  2008-11-12 16:16  ypxt\BLL\BLLCity.cs

     文件        161  2008-11-12 16:16  ypxt\BLL\BLLClickRecord.cs

     文件       1272  2008-11-12 16:16  ypxt\BLL\BLLCommand.cs

     文件        161  2008-11-12 16:16  ypxt\BLL\BLLCorpAccount.cs

     文件       2497  2008-11-18 15:49  ypxt\BLL\BLLCorpApply.cs

     文件       2265  2008-11-17 20:19  ypxt\BLL\BLLCorpHowse.cs

     文件       3415  2008-11-20 09:45  ypxt\BLL\BLLCorpReg.cs

     文件        455  2008-11-12 16:16  ypxt\BLL\BLLDetaiJob.cs

     文件       2727  2008-11-18 08:44  ypxt\BLL\BLLEngage.cs

     文件       2114  2008-11-19 21:36  ypxt\BLL\BLLEnouAccount.cs

     文件       2960  2008-11-19 11:31  ypxt\BLL\BLLInform.cs

     文件       1291  2008-11-12 16:16  ypxt\BLL\BLLInvaType.cs

     文件        153  2008-11-12 16:16  ypxt\BLL\BLLKey.cs

     文件        811  2008-11-19 11:31  ypxt\BLL\BLLLeaveWord.cs

     文件       2635  2008-11-12 16:16  ypxt\BLL\BLLLog.cs

     文件       1351  2008-11-17 20:19  ypxt\BLL\BLLPApply.cs

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

评论

共有 条评论