📄 bindui.cs
字号:
using System;
using System.Data;
using HouseSystem.SQLDAL;
namespace HouseSystem.Components
{
/// <summary>
/// BindUI 的摘要说明。
/// </summary>
public class BindUI
{
public static DataTable GetHouseTypeList()
{
string text1 = "SELECT Ht_ID, Ht_Name FROM HouseType ORDER BY Ht_OrderID";
return SQLDAL.SQLHelper.ExecuteDataTable(text1);
}
public static DataTable GetAreaList()
{
string text1 = "SELECT Area_ID, Area_Name FROM Area ORDER BY Area_OrderID";
return SQLDAL.SQLHelper.ExecuteDataTable(text1);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -