public async Task <IActionResult> Index(int?page = null) { var result = await imagesService.GetByPage(page); var mapped = mapper.Map <ImagesPageResponse>(result); return(Ok(mapped)); }