Get text from OI

This commit is contained in:
2024-08-28 15:58:20 -07:00
parent 1ad6246b8d
commit b824c4ba36
6 changed files with 15 additions and 14 deletions

View File

@ -11,6 +11,6 @@ public interface IWaferCounterController<T>
static string GetRouteName() => nameof(IWaferCounterController<T>)[1..^10];
T GetLastQuantityAndSlotMap(string area, string waferSize);
T GetLastQuantityAndSlotMap(string area, string waferSize, string text);
}

View File

@ -4,6 +4,6 @@ public interface IWaferCounterRepository
{
string? GetSlotMap(string line1, string line2);
DataModels.WaferCounter? GetLastQuantityAndSlotMap(string area, string waferSize);
DataModels.WaferCounter? GetLastQuantityAndSlotMap(string area, string waferSize, string text);
}