public bool AccountExists(AccountType type, string name)
 {
     AccountExistsQuery query = new AccountExistsQuery(dbContext.Accounts);
     return query.Execute(type, name);
 }