| 123456789101112131415161718 | // Copyright (c) 2012-2020 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();    }}
 |