Added View, Recipe Paramaters and Export

This commit is contained in:
2023-03-06 12:00:24 -07:00
parent bff76a503a
commit 1712743c46
30 changed files with 1030 additions and 146 deletions

View File

@ -0,0 +1,13 @@
using OI.Metrology.Shared.DataModels;
namespace OI.Metrology.Shared.Models.Stateless;
public interface IExportRepository
{
string GetExport(HeaderCommon headerCommon);
Result<HeaderCommon[]> GetHeaders(HeaderCommon headerCommon);
Result<HeaderCommon[]> GetLogistics(HeaderCommon headerCommon);
string GetProcessDataStandardFormat(HeaderCommon headerCommon);
}