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