2025-11-05 20:50:25 +01:00
|
|
|
using DiunaBI.Domain.Entities;
|
|
|
|
|
using DiunaBI.Infrastructure.Interfaces;
|
2025-06-02 16:54:33 +02:00
|
|
|
|
|
|
|
|
namespace DiunaBI.Plugins.Morska.Importers;
|
|
|
|
|
|
|
|
|
|
public abstract class MorskaBaseImporter : IDataImporter
|
|
|
|
|
{
|
|
|
|
|
public abstract string ImporterType { get; }
|
|
|
|
|
|
|
|
|
|
public virtual bool CanImport(string importerType) => ImporterType == importerType;
|
|
|
|
|
|
|
|
|
|
public abstract void Import(Layer importWorker);
|
|
|
|
|
}
|