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