20 lines
383 B
C#
20 lines
383 B
C#
using OI.Metrology.Shared.DataModels;
|
|
|
|
namespace OI.Metrology.Shared.Models.Stateless;
|
|
|
|
public interface IPinRepository
|
|
{
|
|
|
|
enum ToolId
|
|
{
|
|
BioRad = 1,
|
|
CDE = 2,
|
|
Tencor = 3,
|
|
HgCV = 4,
|
|
Stratus = 5,
|
|
SP1 = 6,
|
|
}
|
|
|
|
Result<Pinned[]> GetPinnedTable(IMetrologyRepository metrologyRepository, int id, string? bioRad, string? cde);
|
|
|
|
} |