コード例 #1
0
 public BlogSubmitCommentController(ISubmitCommentCore submitCommentCore, IValidateCommentCore validateCommentCore)
 {
     SubmitCommentCore   = submitCommentCore;
     ValidateCommentCore = validateCommentCore;
     new RenderingParameterHelper <Controller>(this, true);
 }
コード例 #2
0
 public BlogSubmitComment(ISubmitCommentCore submitCommentCore, ICommentManager commentManager, IValidateCommentCore validateCommentCore)
 {
     SubmitCommentCore   = submitCommentCore;
     CommentManager      = commentManager;
     ValidateCommentCore = validateCommentCore;
 }