Esempio n. 1
0
 public GeekHunterUnitOfWork(DbContext context)
 {
     this._Context                  = context;
     this._SkillRepository          = new SkillRepository(context);
     this._CandidateRepository      = new CandidateRepository(context);
     this._SkillCandidateRepository = new CandidateSkillRepository(context);
 }
Esempio n. 2
0
 public CandidateSkillService()
 {
     _candidateSkillRepository = new CandidateSkillRepository();
     _candidateRepository      = new CandidateRepository();
     _skillRepository          = new SkillRepository();
 }