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

12 lines
461 B
C#

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