using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; using Shentun.Utilities; using System; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using Volo.Abp.BackgroundWorkers.Hangfire; namespace Shentun.Peis.Schedulers { public interface IImportPacsResultInterfaceWorker { public void DoWork(Guid interfaceId); public void DoWork(); } public class ImportPacsResultInterfaceWorker : ThirdInterfaceWorkerBase, IImportPacsResultInterfaceWorker { public void DoWork() { throw new NotImplementedException(); } public override Task DoWorkAsync(CancellationToken cancellationToken = default) { throw new NotImplementedException(); } } }