Esempio n. 1
0
 public PostController(IPostService postService, IBlogsCommentService commentService, OxiteContext context)
 {
     this.postService    = postService;
     this.commentService = commentService;
     this.context        = context;
     ValidateRequest     = false;
 }
Esempio n. 2
0
 public CommentController(IPostService postService, IBlogsCommentService commentService, ITagService tagService, IBlogService blogService, OxiteContext context)
 {
     this.postService    = postService;
     this.commentService = commentService;
     this.tagService     = tagService;
     this.blogService    = blogService;
     this.context        = context;
 }
Esempio n. 3
0
 public BlogController(IBlogService blogService, IPostService postService, IBlogsCommentService commentService, ILanguageService languageService, AbsolutePathHelper absolutePathHelper)
 {
     this.blogService        = blogService;
     this.postService        = postService;
     this.commentService     = commentService;
     this.languageService    = languageService;
     this.absolutePathHelper = absolutePathHelper;
 }
Esempio n. 4
0
 public BlogMLController(ISiteService siteService, ILanguageService languageService, IBlogService blogService, IPostService postService, IBlogsCommentService commentService, OxiteContext context)
 {
     this.siteService     = siteService;
     this.languageService = languageService;
     this.blogService     = blogService;
     this.postService     = postService;
     this.commentService  = commentService;
     this.context         = context;
 }
 public DashboardDataActionFilter(IBlogService blogService, IPostService postService, IBlogsCommentService commentService)
 {
     this.blogService    = blogService;
     this.postService    = postService;
     this.commentService = commentService;
 }
Esempio n. 6
0
 public PostCommentModelBinder(IBlogsCommentService blogsCommentService)
 {
     this.blogsCommentService = blogsCommentService;
 }
Esempio n. 7
0
 public CommentController(IBlogsCommentService commentService, OxiteContext context)
 {
     this.commentService = commentService;
     this.context        = context;
 }