Esempio n. 1
0
        public LayoutController() {

            blogService = new BlogService();
            postService = new BlogPostService();
            categoryService = new BlogCategoryService();
            rollService = new BlogrollService();
            commentService = new OpenCommentService();
        }
Esempio n. 2
0
 public LayoutController()
 {
     blogService     = new BlogService();
     postService     = new BlogPostService();
     categoryService = new BlogCategoryService();
     rollService     = new BlogrollService();
     commentService  = new OpenCommentService();
 }
Esempio n. 3
0
 public CommentObserver()
 {
     postService    = new ForumPostService();
     commentService = new OpenCommentService();
 }
Esempio n. 4
0
 public PostObserver()
 {
     commentService = new OpenCommentService();
 }
Esempio n. 5
0
 public CommentListController()
 {
     commentService = new OpenCommentService();
 }
Esempio n. 6
0
 public LayoutController()
 {
     albumService   = new PhotoAlbumService();
     postService    = new PhotoPostService();
     commentService = new OpenCommentService();
 }
Esempio n. 7
0
 public CommentBaseController()
 {
     commentService = new OpenCommentService();
 }
Esempio n. 8
0
 public PostObserver() {
     commentService = new OpenCommentService();
 }
Esempio n. 9
0
 public CommentObserver() {
     postService = new ForumPostService();
     commentService = new OpenCommentService();
 }