Esempio n. 1
0
        public async Task <IEnumerable <ParticipantDTO> > BrowseAll()
        {
            var allParticipants = await _participantRepository.BrowseAsync();

            return(_mapper.Map <IEnumerable <ParticipantDTO> >(allParticipants));
        }