OldComplianceNFs/Handlers/IFileHandlerFactory.cs

8 lines
147 B
C#

namespace NfProcessorApp.Handlers
{
public interface IFileHandlerFactory
{
IFileHandler CreateHandler(string filePath);
}
}