using Adaptation.Shared; using Adaptation.Shared.Metrology; using System.Collections.Generic; using System.Linq; namespace Adaptation.Metrology { internal class MET08ANLYSDIFAAST230 { internal static Dictionary> GetPreRunInfo(Logistics logistics, EventName eventName) { Dictionary> results = new Dictionary>(); return results; } internal static List Verify(EventName eventName, List results) { return results; } internal static string GetSid(List preRunInfo, bool isMappedPart, IScopeInfo scopeInfo, List tags) { string result = string.Empty; if (preRunInfo.Any()) { result = tags[0]; } return result; } } }