Added View, Recipe Paramaters and Export
This commit is contained in:
13
Shared/Models/Stateless/IExportRepository.cs
Normal file
13
Shared/Models/Stateless/IExportRepository.cs
Normal 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);
|
||||
|
||||
}
|
Reference in New Issue
Block a user