using System; using System.Collections.Generic; using IRaCIS.Application.ViewModels; using IRaCIS.Core.Application.Contracts.RequestAndResponse; namespace IRaCIS.Application.Interfaces { public interface IReviewerPayInfoService { IResponseOutput AddOrUpdateReviewerPayInfo(ReviewerPayInfoCommand addOrUpdateModel, Guid userId); PageOutput GetDoctorPayInfoList(DoctorPaymentInfoQueryDTO queryParam); DoctorPayInfoQueryListDTO GetReviewerPayInfo(Guid doctorId); List GetReviewerIdByRankId(Guid rankId); } }