Ejemplo n.º 1
0
 public IEnumerable <FailedTransactionDto> GetAll()
 => _mapper.toDtos <FailedTransactionDto>(Table);
Ejemplo n.º 2
0
 public IEnumerable <SiteDto> GetAll()
 => _mapper.toDtos <SiteDto>(entities);
Ejemplo n.º 3
0
 public IEnumerable <SiteDto> GetAll()
 => _mapper.toDtos <SiteDto>(Table);
Ejemplo n.º 4
0
 public IEnumerable <ParticipationDto> GetAll()
 {
     return(_mapper.toDtos <ParticipationDto>(entities));
 }
Ejemplo n.º 5
0
 public IEnumerable <ParticipantDto> GetAll()
 {
     return(_mapper.toDtos <ParticipantDto>(Table));
 }