コード例 #1
0
 public static DataTable GetMsgById(string SystemMsgID)
 {
     return(SystemMessagesDAL.GetMsgById(SystemMsgID));
 }
コード例 #2
0
 public static DataTable QueryShowMsg()
 {
     return(SystemMessagesDAL.QueryShowMsg());
 }
コード例 #3
0
 public static bool Update(string SystemMsg, string SystemLink, int Status, string id)
 {
     return(SystemMessagesDAL.Update(SystemMsg, SystemLink, Status, id));
 }
コード例 #4
0
 public static bool Insert(string SystemMsg, string SystemLink, int Status)
 {
     return(SystemMessagesDAL.Insert(SystemMsg, SystemLink, Status));
 }
コード例 #5
0
 public static bool Delete(string SystemMsgID)
 {
     return(SystemMessagesDAL.Delete(SystemMsgID));
 }
コード例 #6
0
 public static DataTable QueryAll()
 {
     return(SystemMessagesDAL.QueryAll());
 }