All but DataTable Deserialize
This commit is contained in:
18
Shared/Models/Stateless/IAwaitingDispoController.cs
Normal file
18
Shared/Models/Stateless/IAwaitingDispoController.cs
Normal 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);
|
||||
|
||||
}
|
Reference in New Issue
Block a user