Example #1
0
 public Career(string name, string description, ISubjectRepository subjectRepository)
 {
     this.name        = name;
     this.description = description;
     skills           = new List <ISkill>();
     studyPlan        = new StudyPlan(subjectRepository);
 }
Example #2
0
 public Career(string name, string description,ISubjectRepository subjectRepository)
 {
     this.name = name;
     this.description = description;
     skills = new List<ISkill>();
     studyPlan = new StudyPlan(subjectRepository);
 }
 public void SetCareer(ICareer career)
 {
     career.ComputePlan();
     this.studyPlan = career.StudyPlan;
     PopulateStudyPlan();
 }
Example #4
0
 public void SetCareer(ICareer career)
 {
     career.ComputePlan();
     this.studyPlan = career.StudyPlan;
     PopulateStudyPlan();
 }