public CommentController(
     IWorkContextAccessor workContextAccessor,
     IListService listService,
     IListItemService listItemService,
     IListItemCommentService commentService)
     : base(workContextAccessor)
 {
     this.listService     = listService;
     this.listItemService = listItemService;
     this.commentService  = commentService;
 }
 public HomeController(IWorkContextAccessor workContextAccessor,
                       IListService listService,
                       IListItemService listItemService,
                       IListItemCommentService listItemCommentService,
                       IListCategoryService listCategoryService,
                       IListFieldService listFieldService,
                       IListCategoryPathConstraint listCategoryPathConstraint)
     : base(workContextAccessor)
 {
     this.listService                = listService;
     this.listItemService            = listItemService;
     this.listItemCommentService     = listItemCommentService;
     this.listCategoryService        = listCategoryService;
     this.listFieldService           = listFieldService;
     this.listCategoryPathConstraint = listCategoryPathConstraint;
 }