Ejemplo n.º 1
0
 public SkillRepo(KnowledgeAuditContext db) : base(db)
 {
     Table = Context.Skills;
 }
Ejemplo n.º 2
0
 public EmployeeSkillRepo(KnowledgeAuditContext db) : base(db)
 {
     Table = Context.EmployeeSkills;
 }
Ejemplo n.º 3
0
 public BaseRepo(KnowledgeAuditContext db)
 {
     Context = db;
 }