12 lines
452 B
C#
12 lines
452 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CopyRou
|
|
{
|
|
public interface IFileService
|
|
{
|
|
bool MatchFolderName(string folderName, string numPart, string versionPart);
|
|
List<string> CopyRouFiles(string sourceFolder, string number, string destPath, ILogger logger);
|
|
Task ProcessCodes(List<string> codes, List<string> sourcePaths, string destPath, IProgress<int> progress, ILogger logger);
|
|
}
|
|
} |