public LogDAO()
 {
     context = new EbbSEntities();
 }
Exemple #2
0
 public UserDao()
 {
     context    = new EbbSEntities();
     commentDAO = new CommentDAO();
     reportDAO  = new ReportDAO();
 }
Exemple #3
0
 public CategoryDao()
 {
     _context = new EbbSEntities();
 }
Exemple #4
0
 public LogController()
 {
     logService  = new LogService();
     userService = new UserService();
     db          = new EbbSEntities();
 }
 public SecurityQuestionDao()
 {
     context = new EbbSEntities();
     userDao = new UserDao();
 }
Exemple #6
0
 public PostDAO()
 {
     context    = new EbbSEntities();
     commentDao = new CommentDAO();
 }