Added View, Recipe Paramaters and Export

This commit is contained in:
2023-03-06 11:07:37 -07:00
parent e42636853d
commit 9e1171cf35
23 changed files with 664 additions and 22 deletions

View File

@ -0,0 +1,22 @@
using OI.Metrology.Shared.DataModels;
namespace OI.Metrology.Shared.Models.Stateless;
public interface IExportController<T>
{
enum Action : int
{
Index = 0,
Export = 1,
Headers = 2,
Logistics = 3
}
static string GetRouteName() => nameof(IExportController<T>)[1..^10];
T GetExport(HeaderCommon headerCommon);
T GetHeaders(HeaderCommon headerCommon);
T GetLogistics(HeaderCommon headerCommon);
T GetProcessDataStandardFormat(HeaderCommon headerCommon);
}