You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
50 lines
1.5 KiB
using System;
|
|
using System.Data;
|
|
namespace OT.IDAL
|
|
{
|
|
/// <summary>
|
|
/// Interface OTB_SYS_SystemSetting
|
|
/// </summary>
|
|
public interface IOTB_SYS_SystemSetting
|
|
{
|
|
#region Method
|
|
/// <summary>
|
|
/// 是否存在該記錄
|
|
/// </summary>
|
|
bool Exists(string SettingItem);
|
|
/// <summary>
|
|
/// 增加一條資料
|
|
/// </summary>
|
|
bool Add(OT.Model.OTB_SYS_SystemSetting model);
|
|
/// <summary>
|
|
/// 更新一條資料
|
|
/// </summary>
|
|
bool Update(OT.Model.OTB_SYS_SystemSetting model);
|
|
/// <summary>
|
|
/// 刪除一條資料
|
|
/// </summary>
|
|
bool Delete(string SettingItem);
|
|
/// <summary>
|
|
/// 得到一個對象實體
|
|
/// </summary>
|
|
OT.Model.OTB_SYS_SystemSetting GetModel( string SettingItem);
|
|
/// <summary>
|
|
/// 獲得資料列表
|
|
/// </summary>
|
|
DataSet GetList(int StartRecordIndex, int EndRecordIndex, string SettingItem, string SettingDescription, string SettingValue, string Effective, string SortExpression);
|
|
/// <summary>
|
|
/// 獲得資料總筆數
|
|
/// </summary>
|
|
int GetListCount(string SettingItem, string SettingDescription, string SettingValue, string Effective);
|
|
|
|
/// <summary>
|
|
/// 獲得全部資料列表
|
|
/// </summary>
|
|
DataSet GetAllList();
|
|
|
|
DataSet GetMitakeInfo();
|
|
|
|
#endregion Method
|
|
}
|
|
}
|
|
|