12 lines
282 B
C#
12 lines
282 B
C#
|
|
using OI.Metrology.Shared.DataModels;
|
|
|
|
namespace OI.Metrology.Shared.Models.Stateless;
|
|
|
|
public interface IWorkMaterialRepository
|
|
{
|
|
|
|
string GetCommandText(int? workOrderNumber, int? workOrderStep, int? workOrderCassette);
|
|
Result<WorkMaterialV2[]> GetCassette(string mid);
|
|
|
|
} |