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
33 lines
828 B
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();
|
|
}
|
|
}
|
|
}
|