public QuestionsRepository()
 {
     db = new StuckflowDatabaseDbContext();
 }
Example #2
0
 public AnswersRepository()
 {
     db = new StuckflowDatabaseDbContext();
     qr = new QuestionsRepository();
     vr = new VotesRepository();
 }
Example #3
0
 public VotesRepository()
 {
     db = new StuckflowDatabaseDbContext();
 }
Example #4
0
 public CategoriesRepository()
 {
     db = new StuckflowDatabaseDbContext();
 }