DicomServer/Desktop/Worklist SCP/Model/IWorklistItemsSource.cs

19 lines
533 B
C#
Raw Normal View History

2024-12-13 10:06:20 +08:00
// Copyright (c) 2012-2021 fo-dicom contributors.
// Licensed under the Microsoft Public License (MS-PL).
using System.Collections.Generic;
namespace Worklist_SCP.Model
{
public interface IWorklistItemsSource
{
/// <summary>
/// this method queries some source like database or webservice to get a list of all scheduled worklist items.
/// This method is called periodically.
/// </summary>
List<WorklistItem> GetAllCurrentWorklistItems(string ScheduledStationAETitle);
}
}