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