IWorklistItemsSource.cs 503 B

123456789101112131415161718
  1. // Copyright (c) 2012-2020 fo-dicom contributors.
  2. // Licensed under the Microsoft Public License (MS-PL).
  3. using System.Collections.Generic;
  4. namespace Worklist_SCP.Model
  5. {
  6. public interface IWorklistItemsSource
  7. {
  8. /// <summary>
  9. /// this method queries some source like database or webservice to get a list of all scheduled worklist items.
  10. /// This method is called periodically.
  11. /// </summary>
  12. List<WorklistItem> GetAllCurrentWorklistItems();
  13. }
  14. }