コード例 #1
0
ファイル: BankMananger.cs プロジェクト: davericher/cst8253
 private void ExtractTransactions(Customer customer,AccountType type)
 {
     foreach (var transaction in customer.AccountTransactions(type))
         _console.WriteLine(transaction);
     _console.LineBreak();
 }