14 lines
307 B
C#
14 lines
307 B
C#
using Shared.Metrology;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text.Json;
|
|
|
|
namespace Shared;
|
|
|
|
public interface IProcessData
|
|
{
|
|
|
|
Tuple<string, JsonElement?, List<FileInfo>> GetResults(ILogic logic, ConfigDataBase configData, List<FileInfo> fileInfoCollection);
|
|
|
|
} |