Regelsteuerung grafisch und per C# Templates
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
namespace TrafagSalesExporter.Services;
|
||||
|
||||
public interface ITransformationCatalog
|
||||
{
|
||||
IReadOnlyList<TransformationCatalogItem> GetAll();
|
||||
IReadOnlyList<TransformationCatalogItem> GetByScope(string ruleScope);
|
||||
}
|
||||
|
||||
public sealed class TransformationCatalogItem
|
||||
{
|
||||
public string Key { get; init; } = string.Empty;
|
||||
public string RuleScope { get; init; } = string.Empty;
|
||||
public string Description { get; init; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user