コード例 #1
0
        public async Task <IActionResult> GetAllResults()
        {
            _logger.LogInfo("Took list of results from db");
            var results = await _repository.GetAllResults();

            return(Ok(results));
        }