コード例 #1
0
 public BlogSubmitCommentController(ISubmitCommentCore submitCommentCore, IValidateCommentCore validateCommentCore)
 {
     SubmitCommentCore   = submitCommentCore;
     ValidateCommentCore = validateCommentCore;
     new RenderingParameterHelper <Controller>(this, true);
 }
コード例 #2
0
 public BlogSubmitCommentController(ISubmitCommentCore submitCommentCore)
 {
     SubmitCommentCore = submitCommentCore ?? new SubmitCommentCore();
 }
コード例 #3
0
ファイル: SubmitComment.ascx.cs プロジェクト: trowpa/WeBlog
 public BlogSubmitComment(ISubmitCommentCore submitCommentCore = null)
 {
     SubmitCommentCore = submitCommentCore ?? new SubmitCommentCore();
 }
コード例 #4
0
ファイル: SubmitComment.ascx.cs プロジェクト: WeTeam/WeBlog
 public BlogSubmitComment(ISubmitCommentCore submitCommentCore = null)
 {
     SubmitCommentCore = submitCommentCore ?? new SubmitCommentCore();
 }
コード例 #5
0
 public BlogSubmitComment(ISubmitCommentCore submitCommentCore, ICommentManager commentManager, IValidateCommentCore validateCommentCore)
 {
     SubmitCommentCore   = submitCommentCore;
     CommentManager      = commentManager;
     ValidateCommentCore = validateCommentCore;
 }