public string GetInsertAlertSMS(SMSView smsview)
        {
            SMSDAO smsdao = new SMSDAO();
            try
            {
                string dt2;
                dt2 = smsdao.InsertAlertSMS(smsview);
                return dt2;
            }
            catch (Exception)
            {

                throw;
            }
            finally
            {
                smsdao = null;
            }
        }