Example #1
0
        public async Task <IEnumerable <BusStopsBusStopDto> > GetAllBusStopsIncludeRouteAsync()
        {
            var busStops = await _repository.GetAllBusStopsIncludeRouteAsync();

            return(_mapper.Map <IEnumerable <BusStop>, IEnumerable <BusStopsBusStopDto> >(busStops));
        }