public DataTable GetCustomerName(SMSView smsview) { DataTable dta = new DataTable(); SMSDAO smsdao = new SMSDAO(); try { return dta = smsdao.retrieveNameByCustID(smsview); } catch (Exception) { throw; } finally { smsdao = null; } }