using IRaCIS.Application.Contracts; 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); } }