コード例 #1
0
ファイル: TechnologyRepository.cs プロジェクト: Trile33/KDB
 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
ファイル: UserRepository.cs プロジェクト: Trile33/KDB
 public UserRepository(KnowledgeDBContext context, IOptions <AppSettings> appSettings)
 {
     _context     = context;
     _appSettings = appSettings.Value;
 }
コード例 #5
0
ファイル: ProjectRepository.cs プロジェクト: Trile33/KDB
 public ProjectRepository(KnowledgeDBContext context)
 {
     _context = context;
 }