using IRaCIS.Application.Contracts; using System; using System.Collections.Generic; using IRaCIS.Core.Infrastructure.Extention; namespace IRaCIS.Application.Interfaces { public interface ICalculateService { Task CalculateMonthlyPayment(CalculateDoctorAndMonthDTO param, string token); //IResponseOutput LockMonthlyPayment(LockPaymentDTO param); Task> GetNeedCalculateReviewerList(Guid reviewerId, string yearMonth); Task IsLock(Guid reviewerId, string yearMonth); //bool ResetMonthlyPayment(Guid reviewerId, Guid trialId,string yearMonth); } }