public static DataSet GetAnnouncementList(string where)
 {
     return(DataHelper.GetListByDesc("Announcement", where));
 }
 public static DataSet GetNoteList(string where)
 {
     return(DataHelper.GetListByDesc("NoteTable", where));
 }
Exemple #3
0
 public static DataSet GetMessageList(string where)
 {
     return(DataHelper.GetListByDesc("Messagetable", where));
 }
Exemple #4
0
 public static DataSet GetReceivedMessageList(string where)
 {
     return(DataHelper.GetListByDesc("MessageReceivedList", where));
 }
 public DataSet GetBalanceList(string field, string where)
 {
     return(DataHelper.GetListByDesc(this.TableName, field, where));
 }