コード例 #1
0
 public TodoListItem(todolistTodoitemsTodoitem input)
 {
     this.Name = input.content;
     this.ID = int.Parse(input.id.First().Value);
     this.TodoID = int.Parse(input.todolistid.First().Value);
     this.Completed = bool.Parse(input.completed.First().Value);
 }
コード例 #2
0
 public TodoListItem(todolistTodoitemsTodoitem input)
 {
     this.Name      = input.content;
     this.ID        = int.Parse(input.id.First().Value);
     this.TodoID    = int.Parse(input.todolistid.First().Value);
     this.Completed = bool.Parse(input.completed.First().Value);
 }