public BlogSubmitCommentController(ISubmitCommentCore submitCommentCore, IValidateCommentCore validateCommentCore)
 {
     SubmitCommentCore   = submitCommentCore;
     ValidateCommentCore = validateCommentCore;
     new RenderingParameterHelper <Controller>(this, true);
 }
Example #2
0
 public BlogSubmitCommentController(ISubmitCommentCore submitCommentCore)
 {
     SubmitCommentCore = submitCommentCore ?? new SubmitCommentCore();
 }
Example #3
0
 public BlogSubmitComment(ISubmitCommentCore submitCommentCore = null)
 {
     SubmitCommentCore = submitCommentCore ?? new SubmitCommentCore();
 }
Example #4
0
 public BlogSubmitComment(ISubmitCommentCore submitCommentCore = null)
 {
     SubmitCommentCore = submitCommentCore ?? new SubmitCommentCore();
 }
 public BlogSubmitComment(ISubmitCommentCore submitCommentCore, ICommentManager commentManager, IValidateCommentCore validateCommentCore)
 {
     SubmitCommentCore   = submitCommentCore;
     CommentManager      = commentManager;
     ValidateCommentCore = validateCommentCore;
 }