namespace OI.Metrology.Shared.Models.Stateless;

public interface IOpenInsightV1Controller<T>
{

    static string GetRouteName() => nameof(IOpenInsightV1Controller<T>)[1..^10];
    T GetTencorRun(string rds, string? insertDate, string? recipe);

}