Exemplo n.º 1
0
 public Task(TaskType taskType, string text)
 {
     this.taskTypeId = taskType.Id; this.header = taskType.name; this.text = text;
 }
Exemplo n.º 2
0
 public TaskType(TaskType t)
 {
     id   = t.id;
     name = t.name;
 }