15 lines
422 B
C#
15 lines
422 B
C#
using IRaCIS.Application.Contracts;
|
|
|
|
namespace IRaCIS.Application.Interfaces
|
|
{
|
|
public interface IRankPriceService
|
|
{
|
|
Task<IResponseOutput> AddOrUpdateRankPrice(RankPriceCommand addOrUpdateModel, Guid userId);
|
|
|
|
Task<PageOutput<RankPriceDTO>> GetRankPriceList(RankPriceQueryDTO queryParam);
|
|
|
|
Task<IResponseOutput> DeleteRankPrice(Guid id);
|
|
|
|
Task<List<RankDic>> GetRankDic();
|
|
}
|
|
} |