public DataTable GetCustomerNameMobile(SMSView smsview)
        {
            DataTable dta = new DataTable();
            SMSDAO smsdao = new SMSDAO();
            try
            {
                return dta = smsdao.retrieveNamemobilenoByCustID(smsview);
            }
            catch (Exception)
            {

                throw;
            }
            finally
            {
                smsdao = null;
            }
        }