irc-netcore-api/IRaCIS.Core.Application/Service/Financial/Interface/ICalculateService.cs

17 lines
648 B
C#

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