public async Task <IActionResult> GetTodo([FromRoute] int id) { _logger.LogInformation($"GET todo Id : {id}"); var todo = await _todosService.GetTodo(id);// _context.Todos.SingleOrDefaultAsync(m => m.Id == id); if (todo == null) { return(NotFound("Nem található ilyen todo :(")); } var todoView = _mapper.Map <TodoView>(todo); return(Ok(todoView)); }