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; }