Files
irc-netcore-api/IRaCIS.Core.Application/Service/Financial/Interface/ITrialPaymentPriceService.cs
T
hang fc30cb39ee
continuous-integration/drone/push Build is passing
增加Global Using
2024-09-20 10:19:08 +08:00

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);
}
}