public BlogSubmitCommentController(ISubmitCommentCore submitCommentCore, IValidateCommentCore validateCommentCore)
 {
     SubmitCommentCore   = submitCommentCore;
     ValidateCommentCore = validateCommentCore;
     new RenderingParameterHelper <Controller>(this, true);
 }
 public BlogSubmitComment(ISubmitCommentCore submitCommentCore, ICommentManager commentManager, IValidateCommentCore validateCommentCore)
 {
     SubmitCommentCore   = submitCommentCore;
     CommentManager      = commentManager;
     ValidateCommentCore = validateCommentCore;
 }