Exemplo n.º 1
0
 public AttachmentController()
 {
     boardService      = new ForumBoardService();
     attachmentService = new AttachmentService();
     topicService      = new ForumTopicService();
     attachService     = new AttachmentService();
 }
Exemplo n.º 2
0
 public ForumCacheRemove( IForumBoardService bds, IForumTopicService topicService, ControllerBase ctx )
 {
     this.controller = ctx;
     this.boardService = bds;
     this.owner = ctx.ctx.owner.obj;
     this.topicService = topicService;
 }
Exemplo n.º 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;
 }
Exemplo n.º 4
0
 public ForumController()
 {
     topicService = new ForumTopicService();
     postService  = new ForumPostService();
     boardService = new ForumBoardService();
 }
Exemplo n.º 5
0
 public SecurityController()
 {
     boardService = new ForumBoardService();
 }
Exemplo n.º 6
0
 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();
 }
Exemplo n.º 8
0
 public TagController() {
     boardService = new ForumBoardService();
     topicService = new ForumTopicService();
 }
Exemplo n.º 9
0
 public TagController()
 {
     boardService = new ForumBoardService();
     topicService = new ForumTopicService();
 }
Exemplo n.º 10
0
 public ForumCacheRemove(IForumBoardService bds, ControllerBase controller)
 {
     this.controller   = controller;
     this.boardService = bds;
     this.owner        = controller.ctx.owner.obj;
 }
Exemplo n.º 11
0
 public SecurityController() {
     boardService = new ForumBoardService();
 }