コード例 #1
0
        public async Task <IActionResult> ListAutobots()
        {
            var allAutobots = await _datastore.GetAllAutobotsAsync();

            return(Ok(allAutobots));
        }