using IRaCIS.Application.Contracts; using System; using IRaCIS.Core.Infrastructure.Extention; namespace IRaCIS.Application.Interfaces { public interface ITrialRevenuesPriceService { Task AddOrUpdateTrialRevenuesPrice(TrialRevenuesPriceDTO model); Task DeleteTrialCost(Guid Id); Task> GetTrialRevenuesPriceList(TrialRevenuesPriceQueryDTO param); } }