コード例 #1
0
ファイル: Account.cs プロジェクト: davelobban/bank-kata-2
 public void Withdraw(int amount)
 {
     _transactionRepo.AddWithdrawal(amount);
 }