CostCalculationItem/IRaCIS.Core.Application.Con.../Financial/ITrialPaymentPriceService.cs

25 lines
774 B
C#
Raw Permalink 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 System;
using System.Collections.Generic;
using IRaCIS.Application.ViewModels;
using IRaCIS.Core.Application.Contracts.RequestAndResponse;
namespace IRaCIS.Application.Interfaces
{
public interface ITrialPaymentPriceService
{
IResponseOutput AddOrUpdateTrialPaymentPrice(TrialPaymentPriceCommand addOrUpdateModel, Guid userId);//新增也不需要返回IdTrialId 也是唯一
PageOutput<TrialPaymentPriceDTO> GetTrialPaymentPriceList(TrialPaymentPriceQueryDTO queryParam);
/// <summary>
/// 上传入组后的Ack-SOW
/// </summary>
IResponseOutput UploadTrialSOW(Guid userId, TrialSOWPathDTO trialSowPath);
IResponseOutput DeleteTrialSOW(Guid userId, DeleteSowPathDTO trialSowPath);
}
}