Removed FromBody
This commit is contained in:
@ -1,5 +1,3 @@
|
||||
using OI.Metrology.Shared.DataModels;
|
||||
|
||||
namespace OI.Metrology.Shared.Models.Stateless;
|
||||
|
||||
public interface IExportController<T>
|
||||
@ -14,9 +12,13 @@ public interface IExportController<T>
|
||||
}
|
||||
|
||||
static string GetRouteName() => nameof(IExportController<T>)[1..^10];
|
||||
T GetExport(HeaderCommon headerCommon);
|
||||
T GetHeaders(HeaderCommon headerCommon);
|
||||
T GetLogistics(HeaderCommon headerCommon);
|
||||
T GetProcessDataStandardFormat(HeaderCommon headerCommon);
|
||||
T GetExport();
|
||||
T GetHeaders();
|
||||
T GetLogistics();
|
||||
T GetProcessDataStandardFormat();
|
||||
T PostExport();
|
||||
T PostHeaders();
|
||||
T PostLogistics();
|
||||
T PostProcessDataStandardFormat();
|
||||
|
||||
}
|
Reference in New Issue
Block a user