コード例 #1
0
        public async Task <IActionResult> GetDoctorPhotosGallery(int id)
        {
            var photos = await _doctorsService.GetDoctorsPhotosGallery(id, RequestLang);

            return(Ok(photos));
        }