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