Ejemplo n.º 1
0
 public void InsertTransaction(string accountnumber, string amount, int transtype)
 {
     TransactionDA tda = new TransactionDA();
     tda.InsertTransaction(accountnumber, amount, transtype);
 }
Ejemplo n.º 2
0
 public DataSet GetAllTransactions(string accountnumber)
 {
     TransactionDA tda = new TransactionDA();
     return tda.GetAllTransactions(accountnumber);
 }