Esempio n. 1
0
 public Transaction(decimal amount, DateTime date, string notes, Customer customer, BankAccount account)
 {
     this.Amount   = amount;
     this.Date     = date;
     this.Notes    = notes;
     this.Customer = customer;
     this.account  = account;
 }