コード例 #1
0
ファイル: Program.cs プロジェクト: Jerflem1387/July6Troop2015
 public Customer()
 {
     Checking = new Account();
     Savings = new Account();
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: heroictugboat/CoderCamps
 public static void Transfer(Account transFrom, Account transTo, decimal transAmount)
 {
     transFrom.Balance -= transAmount;
     transTo.Balance += transAmount;
 }
コード例 #3
0
ファイル: Program.cs プロジェクト: wyijx/CSharpFundamentals
 public Customer()
 {
     this.Checking = new Account();
     this.Savings = new Account();
 }