namespace OI.Metrology.Shared.Models.Stateless;

public interface IWaferCounterRepository
{

    string? GetSlotMap(string line1, string line2);
    DataModels.WaferCounter? GetLastQuantityAndSlotMap(string area, string waferSize, string text);

}