Пример #1
0
 public MembersRepository(TheNuggetsListDbContext context)
 {
     _dbContext = context;
 }
Пример #2
0
 public CommentsRepository(TheNuggetsListDbContext dbContext)
 {
     _dbContext = dbContext;
     SaveCommentEvent += new SaveCommentHandler(SaveCommentEventFired);
 }
Пример #3
0
 public TaggedItemsRepository(TheNuggetsListDbContext context)
 {
     _dbContext = context;
 }
Пример #4
0
 public NuggetsRepository(TheNuggetsListDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public AchievementsRepository(TheNuggetsListDbContext context)
 {
     _dbContext = context;
 }