public ActionResult Delete(int id)
        {
            Planet planet = _planetService.GetById(id);

            if (planet != null)
            {
                _planetService.Delete(id);
                return(NoContent());
            }

            return(NotFound());
        }