public TechnologyRepository(KnowledgeDBContext context) { _context = context; }
public EmployeeRepository(KnowledgeDBContext context) { _context = context; }
public ControllerImpl(KnowledgeDBContext db) { this.db = db; }
public UserRepository(KnowledgeDBContext context, IOptions <AppSettings> appSettings) { _context = context; _appSettings = appSettings.Value; }
public ProjectRepository(KnowledgeDBContext context) { _context = context; }