public EFUnitOfWork(string connectionString)
 {
     db = new KnowledgeAccountingContext(connectionString);
 }
 public ProgrammerProfileRepository(KnowledgeAccountingContext context)
 {
     this.db = context;
 }
Ejemplo n.º 3
0
 public WorkExperienceRepository(KnowledgeAccountingContext context)
 {
     this.db = context;
 }
 public ProjectRepository(KnowledgeAccountingContext context)
 {
     this.db = context;
 }
Ejemplo n.º 5
0
 public EducationRepository(KnowledgeAccountingContext context)
 {
     this.db = context;
 }
 public SkillRepository(KnowledgeAccountingContext context)
 {
     this.db = context;
 }