22 lines
499 B
C#
22 lines
499 B
C#
using AssortHelpers.Helpers;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace AssortHelpers.Common.Helpers
|
|
{
|
|
public static class InputFileHelper
|
|
{
|
|
private static List<string> _inputFilePaths;
|
|
|
|
public static void SetInputFiles(string path)
|
|
{
|
|
_inputFilePaths = DiskHelpers.GetJsonFiles(path).ToList();
|
|
}
|
|
|
|
public static IEnumerable<string> GetInputFilePaths()
|
|
{
|
|
return _inputFilePaths;
|
|
}
|
|
}
|
|
}
|