2025-11-05 20:50:25 +01:00
|
|
|
using DiunaBI.Domain.Entities;
|
2025-06-02 16:54:33 +02:00
|
|
|
|
2025-11-05 20:50:25 +01:00
|
|
|
namespace DiunaBI.Infrastructure.Interfaces;
|
2025-06-02 16:54:33 +02:00
|
|
|
|
|
|
|
|
public interface IDataProcessor
|
|
|
|
|
{
|
|
|
|
|
string ProcessorType { get; }
|
|
|
|
|
|
|
|
|
|
bool CanProcess(string processorType);
|
|
|
|
|
void Process(Layer processWorker);
|
|
|
|
|
}
|