using System; using System.Data; namespace OT.IDAL { /// /// Interface OTB_SYS_SystemSetting /// public interface IOTB_SYS_SystemSetting { #region Method /// /// 是否存在該記錄 /// bool Exists(string SettingItem); /// /// 增加一條資料 /// bool Add(OT.Model.OTB_SYS_SystemSetting model); /// /// 更新一條資料 /// bool Update(OT.Model.OTB_SYS_SystemSetting model); /// /// 刪除一條資料 /// bool Delete(string SettingItem); /// /// 得到一個對象實體 /// OT.Model.OTB_SYS_SystemSetting GetModel( string SettingItem); /// /// 獲得資料列表 /// DataSet GetList(int StartRecordIndex, int EndRecordIndex, string SettingItem, string SettingDescription, string SettingValue, string Effective, string SortExpression); /// /// 獲得資料總筆數 /// int GetListCount(string SettingItem, string SettingDescription, string SettingValue, string Effective); /// /// 獲得全部資料列表 /// DataSet GetAllList(); DataSet GetMitakeInfo(); #endregion Method } }