public MembersRepository(TheNuggetsListDbContext context)
 {
     _dbContext = context;
 }
 public CommentsRepository(TheNuggetsListDbContext dbContext)
 {
     _dbContext = dbContext;
     SaveCommentEvent += new SaveCommentHandler(SaveCommentEventFired);
 }
 public TaggedItemsRepository(TheNuggetsListDbContext context)
 {
     _dbContext = context;
 }
 public NuggetsRepository(TheNuggetsListDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public AchievementsRepository(TheNuggetsListDbContext context)
 {
     _dbContext = context;
 }