/// <summary>
 /// Gets all roles an account with accountId has
 /// </summary>
 /// <param name="accountId">The id of an account</param>
 /// <returns>A list of all the roles an account has</returns>
 public IEnumerable <string> GetAccountRoles(Guid accountId)
 {
     return(accountRepo.GetRoles(accountId));
 }