Пример #1
0
 public TechnologyRepository(KnowledgeDBContext context)
 {
     _context = context;
 }
Пример #2
0
 public EmployeeRepository(KnowledgeDBContext context)
 {
     _context = context;
 }
Пример #3
0
 public ControllerImpl(KnowledgeDBContext db)
 {
     this.db = db;
 }
Пример #4
0
 public UserRepository(KnowledgeDBContext context, IOptions <AppSettings> appSettings)
 {
     _context     = context;
     _appSettings = appSettings.Value;
 }
Пример #5
0
 public ProjectRepository(KnowledgeDBContext context)
 {
     _context = context;
 }