public async Task <List <AccountSuggestedContract> > SuggestedList([FromQuery, Required, MinLength(2)] string query, [FromQuery] int limit)
        {
            var items = await _accountManagementService.SuggestedListAsync(query, limit);

            return(items.Select(Convert).ToList());
        }