コード例 #1
0
ファイル: SMSInfoSystem.cs プロジェクト: zesus19/c4.v2.T
		public int DeleteSMSReply(int templetID)
		{
			using(SMSInfoDA smsInfoDA = new SMSInfoDA())
			{
				return smsInfoDA.DeleteSMSReply(templetID);
			}
		}
コード例 #2
0
ファイル: SMSInfoSystem.cs プロジェクト: zesus19/c4.v2.T
		public int DeleteSMSPhoneNum(int smsInfo_id)
		{
			using(SMSInfoDA smsInfoDA = new SMSInfoDA())
			{
				return smsInfoDA.DeleteSMSPhoneNum(smsInfo_id);
			}
		}
コード例 #3
0
ファイル: SMSInfoSystem.cs プロジェクト: zesus19/c4.v2.T
		public DataSet GetAllStuPhoneNum()
		{
			using(SMSInfoDA smsInfoDA = new SMSInfoDA())
			{
				return smsInfoDA.GetAllStuPhoneNum();
			}
		}
コード例 #4
0
ファイル: SMSInfoSystem.cs プロジェクト: zesus19/c4.v2.T
		public DataSet GetAllSMSTemp()
		{
			using(SMSInfoDA smsInfoDA = new SMSInfoDA())
			{
				return smsInfoDA.GetAllSMSTemp();
			}
		}
コード例 #5
0
ファイル: SMSInfoSystem.cs プロジェクト: zesus19/c4.v2.T
		public DataSet GetStuPhoneNum(string stuID)
		{
			using(SMSInfoDA smsInfoDA = new SMSInfoDA())
			{
				return smsInfoDA.GetStuPhoneNum(stuID);
			}
		}
コード例 #6
0
ファイル: SMSInfoSystem.cs プロジェクト: zesus19/c4.v2.T
		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);
			}
		}
コード例 #7
0
ファイル: SMSInfoSystem.cs プロジェクト: zesus19/c4.v2.T
		public int InsertSMSTemplate(string name,string content)
		{
			using(SMSInfoDA smsInfoDA = new SMSInfoDA())
			{
				return smsInfoDA.InsertSMSTemplate(name,content);
			}
		}