public async Task <IEnumerable <ParticipantDTO> > BrowseAll() { var allParticipants = await _participantRepository.BrowseAsync(); return(_mapper.Map <IEnumerable <ParticipantDTO> >(allParticipants)); }