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