public ActivityInteractor(
     IActivityRepository activityRepository, DocumentsInteractor documentsInteractor, CommentsInteractor commentsInteractor)
 {
     this.activityRepository  = activityRepository;
     this.documentsInteractor = documentsInteractor;
     this.commentsInteractor  = commentsInteractor;
 }
 public CommentsController(CommentsInteractor commentsInteractor, ICurrentUserInformation currentUserInformation)
 {
     this.commentsInteractor     = commentsInteractor;
     this.currentUserInformation = currentUserInformation;
 }