Exemplo n.º 1
0
        public async Task <IEnumerable <FlightDto> > GetEntitiesAsync()
        {
            var data = await _repository.GetEntitiesAsync();

            return(_mapper.Map <IEnumerable <Flight>, IEnumerable <FlightDto> >(data));
        }