public async Task <ActionResult> ListAsync(int idFolder)
        {
            var result = await _todoItemsService.List(idFolder);

            return(Ok(result));
        }