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

📄 steupselectroombytype.cs

📁 真的很不错哦 用了c#开发 面向对象过程
💻 CS
字号:
using System;
using ConnectDBLibrary;

namespace SetupOperDBLibrary
{
	/// <summary>
	/// SteupSelectRoomByType 查询房间访问层
	/// </summary>
	public class SteupSelectRoomByType
	{
		public void SelectRoomByType(RoomInfoData roomInfo,string RoomType)
		{
			try
			{
				string ComTxt=string.Format("exec Select_RoomInfoByType {0}",RoomType);
				ConnectAndAccessingDB db=new ConnectAndAccessingDB();
				db.Select(ComTxt,roomInfo.RoomInfo_value);
			}
			catch(Exception ex)
			{
				throw new ApplicationException("SteupSelectRoomByType 查询房间访问层",ex);
			}
		}
	}
}

⌨️ 快捷键说明

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