namespace OI.Metrology.Shared.Models.Stateless; public interface IPinController { enum Action : int { Index = 0, MarkAsPinned = 1, PinnedTable = 2 } static string GetRouteName() => nameof(IPinController)[1..^10]; T MarkAsPinned(DataModels.HeaderCommon headerCommon); T GetPinnedTable(int toolTypeId, string? biorad_id = null, string? cde_id = null, string? rds = null); }