public static Account Load(Guid id, Guid customerId, TransactionCollection transactionCollection) { Account account = new Account(); account.Id = id; account.CustomerId = customerId; account._transactions = transactionCollection; return(account); }
public Account(Guid customerId) { CustomerId = customerId; Id = Guid.NewGuid(); _transactions = new TransactionCollection(); }