roontypebll.cs

来自「酒店管理系统(三层开发)源码 管理员的功能: 客房类型管理(编辑房间类型、删除房」· CS 代码 · 共 34 行

CS
34
字号
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using Entity;
using DAL;

namespace BLL
{
    public class RoonTypeBLL
    {
        public static List<RoomTypeEntity> GetRoomType()
        {
            return RoomTypeDAL.GetRoomType();
        }

        public static int AddRoomType(RoomTypeEntity RTE)
        {
            return RoomTypeDAL.AddRoomType(RTE);
        }

        public static int UpdateRoomType(RoomTypeEntity RTE)
        { 
            return RoomTypeDAL.UpdateRoomType(RTE);
        }

        public static int DeleteRoomType(RoomTypeEntity RTE)
        {
            return RoomTypeDAL.DeleteRoomType(RTE);
        }
    }
}

⌨️ 快捷键说明

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