?? querydetailinfo.cs
字號:
using System;
using Data_Access;
using Data_Common;
using Model;
namespace Business_Logic
{
/// <summary>
/// QueryDetailInfo 的摘要說明。
/// </summary>
public class QueryDetailInfo
{
public QueryDetailInfo(){}
public static Train_DetailInfo[] GetTrainDetailInfo(string TrainNO)
{
if(TrainNO.Trim()==string.Empty)
{
return null;
}
else
{
Data_Access.DBDetailInfo schedule = new Data_Access.DBDetailInfo();
Train_DetailInfo[] tschedule=schedule.GetTrainDetailInfo(TrainNO);
return tschedule;
}
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -