Exemplo n.º 1
0
 public Requirement(int id, bool done)
 {
     this.tech = TechnologyDatabase.findTechnology(id);
     this.done = done;
 }
Exemplo n.º 2
0
 public Requirement(int id)
 {
     this.tech = TechnologyDatabase.findTechnology(id);
     this.done = false;
 }