Example #1
0
 public SkillRepo(KnowledgeAuditContext db) : base(db)
 {
     Table = Context.Skills;
 }
 public EmployeeSkillRepo(KnowledgeAuditContext db) : base(db)
 {
     Table = Context.EmployeeSkills;
 }
Example #3
0
 public BaseRepo(KnowledgeAuditContext db)
 {
     Context = db;
 }