11 lines
312 B
C#
11 lines
312 B
C#
using OI.Metrology.Shared.DataModels;
|
|
|
|
namespace OI.Metrology.Shared.Models.Stateless;
|
|
|
|
public interface IPinRepository
|
|
{
|
|
|
|
Result<Pinned[]> GetPinnedTable(IMetrologyRepository metrologyRepository, int id, string? biorad_id, string? cde_id, string? rds);
|
|
void SetPinnedTable(HeaderCommon headerCommon);
|
|
|
|
} |