13 lines
		
	
	
		
			395 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			395 B
		
	
	
	
		
			C#
		
	
	
using IRaCIS.Application.Contracts;
 | 
						|
 | 
						|
namespace IRaCIS.Application.Interfaces
 | 
						|
{
 | 
						|
    public interface ITrialRevenuesPriceService
 | 
						|
    {
 | 
						|
        Task<IResponseOutput> AddOrUpdateTrialRevenuesPrice(TrialRevenuesPriceDTO model);
 | 
						|
        Task<bool> DeleteTrialCost(Guid Id);
 | 
						|
        Task<PageOutput<TrialRevenuesPriceDetialDTO>> GetTrialRevenuesPriceList(TrialRevenuesPriceQueryDTO param);
 | 
						|
 | 
						|
    }
 | 
						|
}
 |