Example #1
0
 public EditComment(IMainCommentService mainCommentService) : base(mainCommentService)
 {
 }
Example #2
0
 public CommentsModel(IMainCommentService mainCommentService) : base(mainCommentService)
 {
 }
Example #3
0
 public CommentBaseModel(IMainCommentService commentService)
 {
     _commentService = commentService;
 }
Example #4
0
 public CommentBaseModel()
 {
     _commentService = Startup.AutofacContainer.Resolve <IMainCommentService>();
 }
Example #5
0
 public CommentsBaseModel(IMainCommentService mainCommentService)
 {
     _mainCommentService = mainCommentService;
 }
Example #6
0
 public CreateCommentModel(IMainCommentService mainComment) : base(mainComment)
 {
 }