public MiningService(IInvestigationService investigationService, IReportConfirmService reportConfirmService,
                      ICreditWalletService creditWalletService, ISystemValueService systemValuesService)
 {
     _investigationService = investigationService;
     _reportConfirmService = reportConfirmService;
     _creditWalletService  = creditWalletService;
     _systemValuesService  = systemValuesService;
 }
 public InvestigationService(IRepository <Investigation> investigationRepository, IReportConfirmService reportConfirmService)
 {
     _investigationRepository = investigationRepository;
     _reportConfirmService    = reportConfirmService;
 }