Skip to content

Commit 96adc78

Browse files
committed
Implement OutputDataPluginEngine for export service (SCU, DICOMWeb)
Signed-off-by: Victor Chang <[email protected]>
1 parent ef20e58 commit 96adc78

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/Api/IInputDataPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace Monai.Deploy.InformaticsGateway.Api
2323
/// <summary>
2424
/// <c>IInputDataPlugin</c> enables lightweight data processing over incoming data received from supported data ingestion
2525
/// services.
26-
/// Refer to <see cref="IInputDataPluginEngine" /> for additional details.
26+
/// Refer to <see cref="IOutputDataPluginEngine" /> for additional details.
2727
/// </summary>
2828
public interface IInputDataPlugin
2929
{

src/Api/MonaiApplicationEntity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public class MonaiApplicationEntity : MongoDBEntityBase
7373
public List<string> Workflows { get; set; } = default!;
7474

7575
/// <summary>
76-
/// Optional list of data input plug-in type names to be executed by the <see cref="IInputDataPluginEngine"/>.
76+
/// Optional list of data input plug-in type names to be executed by the <see cref="IOutputDataPluginEngine"/>.
7777
/// </summary>
7878
public List<string> PluginAssemblies { get; set; } = default!;
7979

src/InformaticsGateway/Services/Scp/ApplicationEntityHandler.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
using System.Threading.Tasks;
2121
using Ardalis.GuardClauses;
2222
using FellowOakDicom.Network;
23-
using Microsoft.AspNetCore.Components.Web;
2423
using Microsoft.Extensions.DependencyInjection;
2524
using Microsoft.Extensions.Logging;
2625
using Microsoft.Extensions.Options;

0 commit comments

Comments
 (0)