This commit is contained in:
2023-02-08 07:16:09 -07:00
parent 90d58e8e9c
commit 65a3c6e7f6
12 changed files with 821 additions and 531 deletions

View File

@ -0,0 +1,20 @@
using OI.Metrology.Shared.DataModels;
namespace OI.Metrology.Shared.Models.Stateless;
public interface IPinRepository
{
enum ToolId
{
BioRad = 0,
CDE = 1,
Tencor = 2,
HgCV = 3,
Stratus = 4,
SP1 = 5,
}
Result<HeaderCommond[]> GetPinnedTable(IMetrologyRepository metrologyRepository, int id, string? bioRad, string? cde);
}