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.Exporters;
|
|
|
|
|
|
|
|
|
|
public abstract class MorskaBaseExporter : IDataExporter
|
|
|
|
|
{
|
|
|
|
|
public abstract string ExporterType { get; }
|
|
|
|
|
public virtual bool CanExport(string exporterType) => ExporterType == exporterType;
|
|
|
|
|
public abstract void Export(Layer layer);
|
|
|
|
|
}
|