Exemple #1
0
 private void SendSMS_VanHanh(string content)
 {
     try
     {
         SMS.ATMService a = new SMS.ATMService();
         a.sendSMS("84987886487", content);//Phuong
         //a.sendSMS("841234110990", content);//Dat
         //a.sendSMS("84938130507", content);//Chau
         a.sendSMS("84908124940", content);//Quy
         a.sendSMS ( "841666858502", content );//TuanAnh  2016-06-06 (42)
         //a.sendSMS("84919165078", content);//Phong
         a.sendSMS("84919763449", content);//Dung //2014-04-25 (2)
         //a.sendSMS("84983400590", content);//Luan //2014-04-25 (2) //OLD 2015-08-25 (28)
         //a.sendSMS("841234110990", content);//Trung //2014-07-08 (3) //OLD 2015-08-25 (28)
         a.sendSMS("84904455528", content);//Vy //2015-08-25 (28)
     }
     catch
     { }
 }
Exemple #2
0
 private void SendSMS_PhatHanh(string content)
 {
     try
     {
         SMS.ATMService a = new SMS.ATMService();
         //  a.sendSMS("84987886487", content);//Phuong
         //  a.sendSMS("841234110990", content);//Dat
         a.sendSMS("84938622757", content);//Trinh
         //a.sendSMS("84905262272", content);//Khanh
         //a.sendSMS("84907070927", content);//Lan
         //a.sendSMS("84973751279", content);//D.Anh
         //a.sendSMS("84907765857", content);//Tru
         //a.sendSMS("84935217850", content);//Thang
         //a.sendSMS("84902269072", content);//Trang
     }
     catch
     { }
 }
Exemple #3
0
 private void SendSMS_Err(string content)
 {
     try
     {
         SMS.ATMService a = new SMS.ATMService();
         a.sendSMS("84987886487", content);//Phuong
         //a.sendSMS("841234110990", content);//Dat
         //a.sendSMS("84919165078", content);//Phong   2016-06-06 (42)
         a.sendSMS ( "84919763449", content );//Chi. Dung   2016-06-06 (42)
         a.sendSMS ( "841666858502", content );//TuanAnh  2016-06-06 (42)
         //a.sendSMS("841234110990", content);//Trung
     }
     catch
     { }
 }
Exemple #4
0
        private void SendSMS_NhacNo(string phone_nbr, string content)
        {
            try
            {
                SMS.ATMService a = new SMS.ATMService();
                a.sendSMS(phone_nbr, content);//Khach hang
            }
            catch
            {

            }
        }
Exemple #5
0
        private string SendSMS_Banking(string phone_nbr, string content, ref bool result)
        {
            try
            {

                Info.WriteLog("In SMS: Before", phone_nbr, "content:" + content);
                SMS.ATMService a = new SMS.ATMService();
                result = a.sendSMS(phone_nbr, content);//Khach hang
                Info.WriteLog("In SMS: After send", phone_nbr, "result:" + result);
                return " ";
            }
            catch (Exception ex)
            {
                return ex.Message;
            }
        }