Files
Ai/TrafagSalesExporter/Services/IRecordTransformationStrategy.cs

11 lines
276 B
C#

using TrafagSalesExporter.Models;
namespace TrafagSalesExporter.Services;
public interface IRecordTransformationStrategy
{
string TransformationType { get; }
string Description => string.Empty;
void Transform(SalesRecord record, FieldTransformationRule rule);
}