8 lines
147 B
C#
8 lines
147 B
C#
namespace NfProcessorApp.Handlers
|
|
{
|
|
public interface IFileHandlerFactory
|
|
{
|
|
IFileHandler CreateHandler(string filePath);
|
|
}
|
|
}
|