Esempio n. 1
0
        public async Task <BusStopsBusStopDto> GetBusStopIncludeRouteCarrierAsync(int id)
        {
            var busStop = await _repository.GetBusStopIncludeRouteCarrierAsync(id);

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