/// <summary>
 /// Get the list of unique member names
 /// </summary>
 /// <returns></returns>
 public async Task <List <UniqueName> > GetUniqueNamesAsync(Guid accountId)
 {
     return(await _uniquNameRepository.ListAsync(accountId, 0, 10000));
 }