public Account(string name, string description, Currency currency) { this.transactions = new AccountTransactionList(); this.positions = new AccountPositionList(); this.Name = name; this.Description = description; this.Currency = currency; }