Match TFS Changeset 303331
This commit is contained in:
35
Adaptation/Helpers/Si/Metrology/MET08ANLYSDIFAAST230.cs
Normal file
35
Adaptation/Helpers/Si/Metrology/MET08ANLYSDIFAAST230.cs
Normal file
@ -0,0 +1,35 @@
|
||||
using Adaptation.Shared;
|
||||
using Adaptation.Shared.Metrology;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace Adaptation.Metrology
|
||||
{
|
||||
|
||||
internal class MET08ANLYSDIFAAST230
|
||||
{
|
||||
|
||||
internal static Dictionary<int, List<object>> GetPreRunInfo(Logistics logistics, EventName eventName)
|
||||
{
|
||||
Dictionary<int, List<object>> results = new Dictionary<int, List<object>>();
|
||||
return results;
|
||||
}
|
||||
|
||||
internal static List<PreRunInfo> Verify(EventName eventName, List<PreRunInfo> results)
|
||||
{
|
||||
return results;
|
||||
}
|
||||
|
||||
internal static string GetSid(List<PreRunInfo> preRunInfo, bool isMappedPart, IScopeInfo scopeInfo, List<string> tags)
|
||||
{
|
||||
string result = string.Empty;
|
||||
if (preRunInfo.Any())
|
||||
{
|
||||
result = tags[0];
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user