public async Task <IActionResult> Update([FromBody] UpdatePlanetViewModel viewModel)
        {
            await _planetService.UpdatePlanetAfterVisit(viewModel);

            return(Ok());
        }