8 lines
187 B
C#
8 lines
187 B
C#
namespace TrafagSalesExporter.Services;
|
|
|
|
public interface ITransformationStrategy
|
|
{
|
|
string TransformationType { get; }
|
|
object? Transform(object? sourceValue, string? argument);
|
|
}
|