13 lines
486 B
C#
13 lines
486 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using IRaCIS.Core.Application.Contracts.RequestAndResponse;
|
|
|
|
namespace IRaCIS.Application.Interfaces
|
|
{
|
|
public interface IVolumeRewardService
|
|
{
|
|
IResponseOutput AddOrUpdateVolumeRewardPriceList(IEnumerable<AwardPriceCommand> addOrUpdateModels,Guid userId);
|
|
PageOutput<AwardPriceDTO> GetVolumeRewardPriceList(AwardPriceQueryDTO queryParam);
|
|
List<AwardPriceCalculateDTO> GetVolumeRewardPriceList();
|
|
}
|
|
} |