Example #1
0
 public int InsertTransaction(string sendFrom, string sendTo,
                              DateTime sendDate, string content, string sendTitle)
 {
     using (TransactionDataAccess transactionDA = new TransactionDataAccess())
     {
         return(transactionDA.InsertTransaction(sendFrom, sendTo,
                                                sendDate, content, sendTitle));
     }
 }