21 lines
649 B
C#
21 lines
649 B
C#
using IRaCIS.Application.Contracts;
|
||
|
||
namespace IRaCIS.Application.Interfaces
|
||
{
|
||
public interface ITrialPaymentPriceService
|
||
{
|
||
Task<IResponseOutput> AddOrUpdateTrialPaymentPrice(TrialPaymentPriceCommand addOrUpdateModel);//新增也不需要返回Id,TrialId 也是唯一
|
||
Task<PageOutput<TrialPaymentPriceDTO>> GetTrialPaymentPriceList(TrialPaymentPriceQueryDTO queryParam);
|
||
|
||
|
||
/// <summary>
|
||
/// 上传入组后的Ack-SOW
|
||
/// </summary>
|
||
Task<IResponseOutput> UploadTrialSOW(TrialSOWPathDTO trialSowPath);
|
||
|
||
|
||
|
||
Task<IResponseOutput> DeleteTrialSOW(DeleteSowPathDTO trialSowPath);
|
||
}
|
||
}
|