using System; using System.Collections.Generic; using IRaCIS.Application.Contracts; using IRaCIS.Core.Infrastructure.Extention; namespace IRaCIS.Application.Interfaces { public interface IRankPriceService { Task AddOrUpdateRankPrice(RankPriceCommand addOrUpdateModel, Guid userId); Task> GetRankPriceList(RankPriceQueryDTO queryParam); Task DeleteRankPrice( Guid id); Task> GetRankDic(); } }