修改警告7

This commit is contained in:
2023-12-01 09:39:56 +08:00
parent 9813ab55a7
commit 333763b3e1
8 changed files with 19 additions and 18 deletions
@@ -25,7 +25,6 @@ namespace IRaCIS.Application.Services
private readonly IRepository<ExchangeRate> _exchangeRateRepository;
private readonly IRepository<PaymentAdjustment> _payAdjustmentRepository;
private readonly IRepository<Enroll> _enrollRepository;
private readonly IMapper _mapper;
public CalculateService(IRepository<Payment> paymentRepository, IRepository<TrialPaymentPrice> trialPaymentPriceRepository,
IRepository<ReviewerPayInformation> reviewerPayInfoRepository,
@@ -37,7 +36,7 @@ namespace IRaCIS.Application.Services
IVolumeRewardService volumeRewardService,
IRepository<ExchangeRate> exchangeRateRepository,
IRepository<Enroll> EnrollRepository,
IRepository<PaymentAdjustment> paymentAdjustmentRepository, IMapper mapper)
IRepository<PaymentAdjustment> paymentAdjustmentRepository)
{
_paymentRepository = paymentRepository;
_trialPaymentRepository = trialPaymentPriceRepository;
@@ -51,7 +50,6 @@ namespace IRaCIS.Application.Services
_exchangeRateRepository = exchangeRateRepository;
_payAdjustmentRepository = paymentAdjustmentRepository;
this._enrollRepository = EnrollRepository;
_mapper = mapper;
}
/// <summary>