Exemple #1
0
 public AttachmentController()
 {
     boardService      = new ForumBoardService();
     attachmentService = new AttachmentService();
     topicService      = new ForumTopicService();
     attachService     = new AttachmentService();
 }
 public ForumCacheRemove( IForumBoardService bds, IForumTopicService topicService, ControllerBase ctx )
 {
     this.controller = ctx;
     this.boardService = bds;
     this.owner = ctx.ctx.owner.obj;
     this.topicService = topicService;
 }
Exemple #3
0
 public ForumCacheRemove(IForumBoardService bds, IForumTopicService topicService, ControllerBase ctx)
 {
     this.controller   = ctx;
     this.boardService = bds;
     this.owner        = ctx.ctx.owner.obj;
     this.topicService = topicService;
 }
Exemple #4
0
 public ForumController()
 {
     topicService = new ForumTopicService();
     postService  = new ForumPostService();
     boardService = new ForumBoardService();
 }
 public SecurityController()
 {
     boardService = new ForumBoardService();
 }
 public ForumCacheRemove( IForumBoardService bds, ControllerBase controller )
 {
     this.controller = controller;
     this.boardService = bds;
     this.owner = controller.ctx.owner.obj;
 }
 public AttachmentController() {
     boardService = new ForumBoardService();
     attachmentService = new AttachmentService();
     topicService = new ForumTopicService();
     attachService = new AttachmentService();
 }
 public TagController() {
     boardService = new ForumBoardService();
     topicService = new ForumTopicService();
 }
Exemple #9
0
 public TagController()
 {
     boardService = new ForumBoardService();
     topicService = new ForumTopicService();
 }
Exemple #10
0
 public ForumCacheRemove(IForumBoardService bds, ControllerBase controller)
 {
     this.controller   = controller;
     this.boardService = bds;
     this.owner        = controller.ctx.owner.obj;
 }
 public SecurityController() {
     boardService = new ForumBoardService();
 }