Files
oi-metrology/Shared/Repositories/IRdsMaxRepo.cs
2022-10-03 11:08:24 -07:00

11 lines
207 B
C#

namespace OI.Metrology.Shared.Repositories;
using DataModels.RDS;
using System.Collections.Generic;
public interface IRdsMaxRepo
{
Max[] GetMaxRDS();
List<string[]> Convert(Max[] collection);
}