public async Task <IActionResult> GetAll() { var todo = await _todoRepo.GetTodos(); return(Ok(todo)); }