Files
Adaptation
.vscode
Eaf
FileHandlers
Ifx
PeerGroup
Shared
Deposition
Duplicator
Methods
IDescription.cs
IFileRead.cs
ILogistics.cs
ILogistics2.cs
IProcessData.cs
ISMTP.cs
Properties
FileRead.cs
Logistics.cs
Logistics2.cs
ParameterType.cs
ProcessDataStandardFormat.cs
Test.cs
_Tests
tessdata
.editorconfig
DEP08SIASM.Tests.csproj
appsettings.Development.json
appsettings.json
package.json
.gitignore
README.md
dep08siasm/Adaptation/Shared/Methods/IProcessData.cs
2022-02-23 13:35:12 -07:00

14 lines
442 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Text.Json;
namespace Adaptation.Shared.Methods;
public interface IProcessData : Properties.IProcessData
{
string GetCurrentReactor(IFileRead fileRead, Logistics logistics, Dictionary<string, string> reactors);
Tuple<string, Test[], JsonElement[], List<FileInfo>> GetResults(IFileRead fileRead, Logistics logistics, List<FileInfo> fileInfoCollection);
}