Files
irc-netcore-api/IRaCIS.Core.Application/Service/Financial/Interface/IVolumeRewardService.cs
T
hang fc30cb39ee
continuous-integration/drone/push Build is passing
增加Global Using
2024-09-20 10:19:08 +08:00

9 lines
382 B
C#

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