// 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
{
///
/// this method queries some source like database or webservice to get a list of all scheduled worklist items.
/// This method is called periodically.
///
List GetAllCurrentWorklistItems(string ScheduledStationAETitle);
}
}