예제 #1
0
        public async Task <IActionResult> GetPhoto(int Id)
        {
            var photFromRepo = await _repo.GetPhotos(Id);

            var photo = _mapper.Map <PhotoForReturnDTO>(photFromRepo);

            return(Ok(photo));
        }