after refactor cleanup
This commit is contained in:
10
DiunaBI.Infrastructure/Interfaces/IDataExporter.cs
Normal file
10
DiunaBI.Infrastructure/Interfaces/IDataExporter.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using DiunaBI.Domain.Entities;
|
||||
|
||||
namespace DiunaBI.Infrastructure.Interfaces;
|
||||
|
||||
public interface IDataExporter
|
||||
{
|
||||
string ExporterType { get; }
|
||||
bool CanExport(string exporterType);
|
||||
void Export(Layer layer);
|
||||
}
|
||||
11
DiunaBI.Infrastructure/Interfaces/IDataImporter.cs
Normal file
11
DiunaBI.Infrastructure/Interfaces/IDataImporter.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using DiunaBI.Domain.Entities;
|
||||
|
||||
namespace DiunaBI.Infrastructure.Interfaces;
|
||||
|
||||
public interface IDataImporter
|
||||
{
|
||||
string ImporterType { get; }
|
||||
|
||||
bool CanImport(string importerType);
|
||||
void Import(Layer importWorker);
|
||||
}
|
||||
11
DiunaBI.Infrastructure/Interfaces/IDataProcessor.cs
Normal file
11
DiunaBI.Infrastructure/Interfaces/IDataProcessor.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using DiunaBI.Domain.Entities;
|
||||
|
||||
namespace DiunaBI.Infrastructure.Interfaces;
|
||||
|
||||
public interface IDataProcessor
|
||||
{
|
||||
string ProcessorType { get; }
|
||||
|
||||
bool CanProcess(string processorType);
|
||||
void Process(Layer processWorker);
|
||||
}
|
||||
12
DiunaBI.Infrastructure/Interfaces/IPlugin.cs
Normal file
12
DiunaBI.Infrastructure/Interfaces/IPlugin.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace DiunaBI.Infrastructure.Interfaces;
|
||||
|
||||
public interface IPlugin
|
||||
{
|
||||
string Name { get; }
|
||||
string Version { get; }
|
||||
string Author { get; }
|
||||
string Description { get; }
|
||||
|
||||
void Initialize();
|
||||
void Dispose();
|
||||
}
|
||||
Reference in New Issue
Block a user