12 lines
461 B
C#
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();
|
|
}
|
|
} |