コード例 #1
0
 public int DeleteSMSReply(int templetID)
 {
     using (SMSInfoDA smsInfoDA = new SMSInfoDA())
     {
         return(smsInfoDA.DeleteSMSReply(templetID));
     }
 }
コード例 #2
0
 public int InsertSMSTemplate(string name, string content)
 {
     using (SMSInfoDA smsInfoDA = new SMSInfoDA())
     {
         return(smsInfoDA.InsertSMSTemplate(name, content));
     }
 }
コード例 #3
0
 public int DeleteSMSPhoneNum(int smsInfo_id)
 {
     using (SMSInfoDA smsInfoDA = new SMSInfoDA())
     {
         return(smsInfoDA.DeleteSMSPhoneNum(smsInfo_id));
     }
 }
コード例 #4
0
 public DataSet GetAllStuPhoneNum()
 {
     using (SMSInfoDA smsInfoDA = new SMSInfoDA())
     {
         return(smsInfoDA.GetAllStuPhoneNum());
     }
 }
コード例 #5
0
 public DataSet GetAllSMSTemp()
 {
     using (SMSInfoDA smsInfoDA = new SMSInfoDA())
     {
         return(smsInfoDA.GetAllSMSTemp());
     }
 }
コード例 #6
0
 public DataSet GetStuPhoneNum(string stuID)
 {
     using (SMSInfoDA smsInfoDA = new SMSInfoDA())
     {
         return(smsInfoDA.GetStuPhoneNum(stuID));
     }
 }
コード例 #7
0
 public int InsertSMSPhoneNum(string stuID,
                              string familialName, string mobilePhoneNum,
                              string stuGrade, string stuClass)
 {
     using (SMSInfoDA smsInfoDA = new SMSInfoDA())
     {
         return(smsInfoDA.InsertSMSPhoneNum(stuID,
                                            familialName, mobilePhoneNum, stuGrade, stuClass));
     }
 }