public IActionResult Index(string profileId)
        {
            var connections = _clientProfileRepository.FindSocialConnectionsFor(profileId);

            return(Json(connections.Select(c => new GetSocialConnectionsDTO
            {
                Id = c.Id,
                Name = c.Name,
                Skype = c.Skype,
                AvatarUrl = c.AvatarUrl
            })));
        }