Example #1
0
        public LegacyAccount CreateAccount(Guid ownerId, decimal balance)
        {
            var account = new LegacyAccount(ownerId, balance);

            _accountRepository.Add(account);
            return(account);
        }
Example #2
0
 public LegacyAccount Add(LegacyAccount account)
 {
     throw new NotImplementedException();
 }