using System; using System.Collections.Generic; using IRaCIS.Application.Contracts; using IRaCIS.Core.Infrastructure.Extention; namespace IRaCIS.Application.Interfaces { public interface IReviewerPayInfoService { Task AddOrUpdateReviewerPayInfo(ReviewerPayInfoCommand addOrUpdateModel, Guid userId); Task> GetReviewerPayInfoList(DoctorPaymentInfoQueryDTO queryParam); Task GetReviewerPayInfo(Guid doctorId); Task> GetReviewerIdByRankId(Guid rankId); } }