public async Task Complete(TodoId id)
        {
            Todo todo = await Finder.Find(id);

            todo.Complete();

            await Repository.Update(todo);
        }
Exemple #2
0
        public async Task Remove(TodoId id)
        {
            Todo todo = await Finder.Find(id);

            todo.Remove(id);

            await Repository.Remove(todo);
        }
        public async Task Update(TodoId id, TodoTitle title)
        {
            Todo todo = await Finder.Find(id);

            todo.UpdateTitle(title);

            await Repository.Update(todo);
        }