irc-netcore-api/IRaCIS.Core.Application/Service/Financial/Interface/ITrialPaymentPriceService.cs

22 lines
695 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using IRaCIS.Application.Contracts;
using IRaCIS.Core.Infrastructure.Extention;
namespace IRaCIS.Application.Interfaces
{
public interface ITrialPaymentPriceService
{
Task<IResponseOutput> AddOrUpdateTrialPaymentPrice(TrialPaymentPriceCommand addOrUpdateModel);//新增也不需要返回IdTrialId 也是唯一
Task<PageOutput<TrialPaymentPriceDTO>> GetTrialPaymentPriceList(TrialPaymentPriceQueryDTO queryParam);
/// <summary>
/// 上传入组后的Ack-SOW
/// </summary>
Task<IResponseOutput> UploadTrialSOW( TrialSOWPathDTO trialSowPath);
Task<IResponseOutput> DeleteTrialSOW( DeleteSowPathDTO trialSowPath);
}
}