public int UpdTDbyAccount(string acc, string renewMode) { return(TDMasterDAO.UpdateRenewMode(acc, renewMode)); }
// This method is coded to show you how to call methods in the DAL layer public int UpdTDbyAccount(string acc, string renewMode) { TDMasterDAO dao = new TDMasterDAO(); return(dao.UpdateRenewMode(acc, renewMode)); }