public LegacyAccount CreateAccount(Guid ownerId, decimal balance) { var account = new LegacyAccount(ownerId, balance); _accountRepository.Add(account); return(account); }
public LegacyAccount Add(LegacyAccount account) { throw new NotImplementedException(); }