示例#1
0
        public async Task <IActionResult> GetPlanetsAndRobots()
        {
            List <PlanetRobotsModel> result = await _planetService.GetPlanetsAndRobotsAsync();

            return(Ok(result));
        }