16 lines
805 B
Plaintext
16 lines
805 B
Plaintext
|
|
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<TestTemplate, List<IGroup>> CreateGroups(List<SensorData> sensors, Dictionary<string, List<TsetSetupImportSensorInfo>> groupSensorLookup, TestTemplate testTemplate, bool createDynamicGroups, List<IGroup> staticGroups, Action<double> setProgress);
|
||
|
|
Dictionary<string, List<TsetSetupImportSensorInfo>> GetGroupSensorLookup(List<SensorData> sensors, Dictionary<string, string> sensorGroupNameLookup, Dictionary<string, List<string>> groupNameSensorListLookup);
|
||
|
|
}
|
||
|
|
}
|