public LikePostCommentServerAction(IServiceProvider serviceProvider, ProfileRepository profileRepository, PostCommentRepository postCommentRepository, ITimeService timeService, PostCommentLikeRepository postCommentLikeRepository, TextService textService, UniwikiContext uniwikiContext) : base(serviceProvider)
 {
     _profileRepository         = profileRepository;
     _postCommentRepository     = postCommentRepository;
     _timeService               = timeService;
     _postCommentLikeRepository = postCommentLikeRepository;
     _textService               = textService;
     _uniwikiContext            = uniwikiContext;
 }
 public UnlikePostCommentServerAction(IServiceProvider serviceProvider, PostCommentRepository postCommentRepository, PostCommentLikeRepository postCommentLikeRepository, UniwikiContext uniwikiContext) : base(serviceProvider)
 {
     _postCommentRepository     = postCommentRepository;
     _postCommentLikeRepository = postCommentLikeRepository;
     _uniwikiContext            = uniwikiContext;
 }