.vscode
Adaptation
.config
.kanbn
.vscode
Eaf
FileHandlers
Ifx
Infineon
PeerGroup
Shared
Duplicator
Methods
IDescription.cs
IFileRead.cs
ILogistics.cs
ILogistics2.cs
IProcessData.cs
ISMTP.cs
Metrology
Properties
FileRead.cs
Logistics.cs
Logistics2.cs
ParameterType.cs
ProcessData.cs
ProcessDataStandardFormat.cs
ProcessDataStandardFormatMapping.cs
Test.cs
_Tests
.editorconfig
MET08THFTIRSTRATUS-Development.yml
MET08THFTIRSTRATUS.Tests.csproj
MET08THFTIRSTRATUS.yml
appsettings.Development.json
appsettings.json
package.json
FileHandlers
Properties
Shared
.gitignore
MET08THFTIRSTRATUS.csproj
README.md
14 lines
442 B
C#
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);
|
|
|
|
} |