using DataPROWin7.DataModel; using DTS.Common.Classes.Sensors; using DTS.Common.Interface.Groups.GroupList; using DTS.SensorDB; using System; using System.Collections.Generic; namespace DTS.Common.Import { public interface IGroupImport { ParseParameters ParseParameters { get; set; } Tuple> CreateGroups(List sensors, Dictionary> groupSensorLookup, TestTemplate testTemplate, bool createDynamicGroups, List staticGroups, Action setProgress); Dictionary> GetGroupSensorLookup(List sensors, Dictionary sensorGroupNameLookup, Dictionary> groupNameSensorListLookup); } }