Beispiel #1
0
        public async Task <IActionResult> GetAll()
        {
            var todo = await _todoRepo.GetTodos();

            return(Ok(todo));
        }