public Career(string name, string description, ISubjectRepository subjectRepository) { this.name = name; this.description = description; skills = new List <ISkill>(); studyPlan = new StudyPlan(subjectRepository); }
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(); }