Beispiel #1
0
 public int UpdTDbyAccount(string acc, string renewMode)
 {
     return(TDMasterDAO.UpdateRenewMode(acc, renewMode));
 }
Beispiel #2
0
 public TDMaster GetTDbyAccount(string acc)
 {
     return(TDMasterDAO.SelectByAccount(acc));
 }
Beispiel #3
0
        public int AddTermDeposit()
        {
            TDMasterDAO dao = new TDMasterDAO();

            return(dao.Insert(this));
        }
Beispiel #4
0
 public List <TDMaster> GetTDbyCustId(string custId)
 {
     return(TDMasterDAO.SelectByCustId(custId));
 }
Beispiel #5
0
        // 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));
        }