public IReadOnlyCollection<Account> GetAccounts(Guid userId)
 {
     var query = new AccountsQuery(dbContext.Accounts);
     return new AccountMapper().Map(query.Execute(userId)).ToList();
 }