コード例 #1
0
ファイル: Bracket.cs プロジェクト: JasLieb/super-caisse
 public void AddTransaction(TransactionType type, double amount)
 {
     Transactions.Add(
         new Transaction(type, amount)
         );
 }