软件雏形
This commit is contained in:
12
IFileService.cs
Normal file
12
IFileService.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user