⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iroomtype.cs

📁 酒店管理 主要实现了基础设施管理(客房管理、客房类型管理)、业务管理(入住、退房、数据库切换) 本系统简单明了,适合初学者学习,采用三层加抽象工厂实现
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

using Model;

namespace IDAL
{
    public interface IRoomType
    {
        IList<RoomType> SelectAllDataByRoomType();
        RoomType SelectRoomTypeByID(int id);
        RoomType SelectRoomTypeByTypeName(string name);
        IList<RoomType> GetRoomTypeByTypeName(string name);
        bool InsertRoomTypeValues(RoomType roomtype);
        bool ModifyRoomTypeValues(RoomType roomtype);
        bool DeleteRoomTypeValues(RoomType roomtype);
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -