oi-metrology/Shared/Models/Stateless/IWaferCounterRepository.cs
2024-08-28 15:58:20 -07:00

9 lines
247 B
C#

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