public MiningService(IInvestigationService investigationService, IReportConfirmService reportConfirmService,
                      ICreditWalletService creditWalletService, ISystemValueService systemValuesService)
 {
     _investigationService = investigationService;
     _reportConfirmService = reportConfirmService;
     _creditWalletService  = creditWalletService;
     _systemValuesService  = systemValuesService;
 }
 public PaymentService(IUserService userService, ICreditTransactionService creditTransactionService,
                       ICreditWalletService creditWalletService, IUserMessageService userMessageService, ISystemValueService systemValueService)
 {
     _userService = userService;
     _creditTransactionService = creditTransactionService;
     _creditWalletService      = creditWalletService;
     _userMessageService       = userMessageService;
     _systemValueService       = systemValueService;
 }
 public CommentService(IRepository <Comment> commentRepository, IUserService userService, IReportService reportService,
                       IUpvoteService upvoteService, IContentService contentService, ISubDirectoryService subDirectoryService,
                       INotificationService notificationService, IActivityService activityService, ICreditWalletService creditWalletService)
 {
     _commentRepository   = commentRepository;
     _userService         = userService;
     _reportService       = reportService;
     _activityService     = activityService;
     _upvoteService       = upvoteService;
     _contentService      = contentService;
     _notificationService = notificationService;
     _subDirectoryService = subDirectoryService;
     _creditWalletService = creditWalletService;
 }