using System.Collections.Generic; using IRaCIS.Core.Infrastructure.Extention; namespace IRaCIS.Application.Interfaces { public interface IVolumeRewardService { Task AddOrUpdateVolumeRewardPriceList(IEnumerable addOrUpdateModels); Task> GetVolumeRewardPriceList(AwardPriceQueryDTO queryParam); Task> GetVolumeRewardPriceList(); } }