Ready to test Max RDS

This commit is contained in:
2022-10-03 11:08:24 -07:00
parent 466057022d
commit 617a4989e2
30 changed files with 5747 additions and 167 deletions

View File

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