コード例 #1
0
        public async Task <IActionResult> GetMapFormats()
        {
            var mapFormats = await _repo.GetMapFormatsAsync();

            var mapFormatsToReturn = _mapper.Map <IEnumerable <MapFormatToReturnDto> >(mapFormats);

            return(Ok(mapFormatsToReturn));
        }