You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
828 B

2 years ago
2 years ago
2 years ago
  1. using Microsoft.Extensions.Configuration;
  2. using Microsoft.Extensions.Logging;
  3. using Shentun.Utilities;
  4. using System;
  5. using System.IO;
  6. using System.Linq;
  7. using System.Threading;
  8. using System.Threading.Tasks;
  9. using Volo.Abp.BackgroundWorkers.Hangfire;
  10. namespace Shentun.Peis.Schedulers
  11. {
  12. public interface IImportPacsResultInterfaceWorker
  13. {
  14. public void DoWork(Guid interfaceId);
  15. public void DoWork();
  16. }
  17. public class ImportPacsResultInterfaceWorker : ThirdInterfaceWorkerBase, IImportPacsResultInterfaceWorker
  18. {
  19. public void DoWork()
  20. {
  21. throw new NotImplementedException();
  22. }
  23. public override Task DoWorkAsync(CancellationToken cancellationToken = default)
  24. {
  25. throw new NotImplementedException();
  26. }
  27. }
  28. }