using System.Collections.Generic; using System.Threading.Tasks; namespace CopyRou { public interface IFileService { bool MatchFolderName(string folderName, string numPart, string versionPart); List CopyRouFiles(string sourceFolder, string number, string destPath, ILogger logger); Task ProcessCodes(List codes, List sourcePaths, string destPath, IProgress progress, ILogger logger); } }