All but DataTable Deserialize

This commit is contained in:
2023-01-09 19:26:00 -07:00
parent 6cbcad2a5d
commit 0468c8d42d
25 changed files with 374 additions and 89 deletions

View File

@ -0,0 +1,18 @@
namespace OI.Metrology.Shared.Models.Stateless;
public interface IAwaitingDispoController<T>
{
enum Action : int
{
Index = 0,
MarkAsReviewed = 1,
MarkAsAwaiting = 2
}
static string GetRouteName() => nameof(IAwaitingDispoController<T>)[1..^10];
T Index();
T MarkAsReviewed(long headerid, int tooltypeid);
T MarkAsAwaiting(long headerid, int tooltypeid);
}