예제 #1
0
 public User(string id, TodoItemList todoItems)
 {
     Id        = id;
     TodoItems = todoItems;
 }
예제 #2
0
 public User(string id)
 {
     Id        = id;
     TodoItems = new TodoItemList();
 }
예제 #3
0
 public User(string id, TodoItemList tasks)
 {
     Id        = id;
     TodoItems = tasks;
 }