Esempio n. 1
0
//

        public async Task <List <BLL.App.DTO.ParticipantNames> > GetAllParticipantAsync()
        {
            return((await Uow.Participant.GetAllParticipantAsync()).Select(e => ParticipantMapper.MapFromInternal(e)).ToList());
        }
Esempio n. 2
0
 public async Task <List <BLL.App.DTO.Participant> > AllForUserAsync(int userId)
 {
     return((await Uow.Participant.AllForUserAsync(userId)).Select(e => ParticipantMapper.MapFromInternal(e)).ToList());
 }