public async Task <IActionResult> Get(int id)
        {
            var reservationDto = await _reservationAppService.Get(id);

            if (reservationDto.HasValue)
            {
                return(Ok(reservationDto.Value));
            }

            return(NotFound());
        }