9 lines
248 B
C#
9 lines
248 B
C#
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);
|
|
|
|
} |