• 大小: 460KB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2021-07-17
  • 语言: C#
  • 标签: c#  

资源简介

c#实现的酒店管理系统,里面包含了数据库文件,简易酒店管理系统源码 二、源码特点 1、采用WinFrom程序设计开发的酒店管理系统; 2、应用到标准的三层技术,多个视图工具控件; 二、功能介绍 用户可根据自己的需求入住登记不同类型的房间,同时登记个人基本信息,管理员可通过对不同类型房间的管理 及房间信息管理设置不同的类型房间进行增删改查,并对入住客户的信息及点退房信息查询,并改变房间的入住 与退房或空房间的状态信息; 三、菜单功能 房间类型管理,房间信息管理,入住登记,入住信息查看和退房,房间状态查看等; 四、注意事项 开发环境为Visual Studio 2010,数据库为SQL Server 2008,数据库文件在DB_51aspx文件夹中,使用.net 4.0开发。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using HotelManager.Models;
using HotelManager.DAL;

namespace HotelManager.BLL
{
    public class GuestManager
    {
        public static int GuestRecord(Guest guest)
        {
            return GuestService.GuestRecord(guest);
        }
        public static List GetAllGuest()
        {
            return GuestService.GetAllGuest();
        }
        public static int UpdateGuestInfo(int guestId Decimal toatalMoney DateTime leaveDate)
        {
            return GuestService.UpdateGuestInfo(guestId toatalMoney leaveDate);
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2361  2014-06-30 17:20  51Aspx源码必读.txt
     目录           0  2014-06-30 10:12  DB_51aspx\
     文件     2359296  2014-06-30 17:20  DB_51aspx\Hotel.mdf
     文件      589824  2014-06-30 17:20  DB_51aspx\Hotel_log.LDF
     目录           0  2014-06-30 10:12  HotelManagerBLL\
     文件         675  2014-06-28 10:11  HotelManagerBLL\GuestManager.cs
     文件        2916  2014-06-27 12:26  HotelManagerBLL\HotelManagerBLL.csproj
     目录           0  2014-06-30 10:12  HotelManagerBLL\Properties\
     文件        1362  2014-06-25 21:54  HotelManagerBLL\Properties\AssemblyInfo.cs
     文件         359  2014-06-27 12:26  HotelManagerBLL\ResideStateManager.cs
     文件        1065  2014-06-28 10:01  HotelManagerBLL\RoomExtensionManager.cs
     文件         788  2014-06-26 10:52  HotelManagerBLL\RoomTypeManager.cs
     目录           0  2014-06-29 14:07  HotelManagerBLL\bin\
     目录           0  2014-06-30 16:06  HotelManagerBLL\bin\Debug\
     文件        5632  2014-06-30 16:06  HotelManagerBLL\bin\Debug\HotelManager.BLL.dll
     文件       19968  2014-06-30 16:06  HotelManagerBLL\bin\Debug\HotelManager.BLL.pdb
     文件       12800  2014-06-30 16:06  HotelManagerBLL\bin\Debug\HotelManager.DAL.dll
     文件       28160  2014-06-30 16:06  HotelManagerBLL\bin\Debug\HotelManager.DAL.pdb
     文件        8192  2014-06-30 16:06  HotelManagerBLL\bin\Debug\HotelManager.Models.dll
     文件        7680  2014-06-30 16:06  HotelManagerBLL\bin\Debug\HotelManager.Models.pdb
     目录           0  2014-06-30 17:35  HotelManagerBLL\bin\Release\
     目录           0  2014-06-29 14:07  HotelManagerBLL\obj\
     目录           0  2014-06-30 16:06  HotelManagerBLL\obj\Debug\
     文件        5950  2014-06-30 16:06  HotelManagerBLL\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件        5632  2014-06-30 16:06  HotelManagerBLL\obj\Debug\HotelManager.BLL.dll
     文件       19968  2014-06-30 16:06  HotelManagerBLL\obj\Debug\HotelManager.BLL.pdb
     文件        2675  2014-06-30 16:06  HotelManagerBLL\obj\Debug\HotelManagerBLL.csproj.FileListAbsolute.txt
     文件        8822  2014-06-30 16:06  HotelManagerBLL\obj\Debug\HotelManagerBLL.csprojResolveAssemblyReference.cache
     文件        5791  2014-06-28 10:29  HotelManagerBLL\obj\Debug\ResolveAssemblyReference.cache
     目录           0  2014-06-30 17:35  HotelManagerBLL\obj\Debug\TempPE\
     目录           0  2014-06-30 10:12  HotelManagerDAL\
............此处省略118个文件信息

评论

共有 条评论