using System; using System.Collections.Generic; using IRaCIS.Core.Application.Contracts.RequestAndResponse; namespace IRaCIS.Application.Interfaces { public interface IVolumeRewardService { IResponseOutput AddOrUpdateVolumeRewardPriceList(IEnumerable addOrUpdateModels,Guid userId); PageOutput GetVolumeRewardPriceList(AwardPriceQueryDTO queryParam); List GetVolumeRewardPriceList(); } }