public void DeleteToDoList(int Id) { ToDoEntity toDoEntity = toDoListRepository.GetToDo(Id); toDoListRepository.DeleteToDoList(toDoEntity); }