oi-metrology/Shared/Models/Stateless/IWaferCounterRepository.cs
Mike Phares 85fe0a7823 Update GetEngineeringSpcReview to work without FS access.
IqsFileSegments and WaferCounterTwoFileSecondsWait
2024-03-19 15:18:15 -07:00

10 lines
341 B
C#

namespace OI.Metrology.Shared.Models.Stateless;
public interface IWaferCounterRepository
{
string? GetSlotMap(string line1, string line2);
DataModels.WaferCounter GetLastQuantityAndSlotMap(string area, string waferSize);
DataModels.WaferCounter? GetLastQuantityAndSlotMapWithText(string area, string waferSize, string text);
}