public SuggestionRepository(ProjectContext context)
 {
     this.context = context;
     suggestions = context.Suggestions;
 }
 public ResearchDomainRepository(ProjectContext context)
 {
     this.context = context;
     researchDomains = context.ResearchDomains;
 }
Esempio n. 3
0
 public UserRepository(ProjectContext context)
 {
     this.context = context;
     users = context.Users;
 }