Feature #33: Enhanced Device Importing

Dynamic device importing. better input parsing and 5 additional import
fields.
This commit is contained in:
Gary Sharp
2014-05-25 16:34:06 +10:00
parent 6a45348bdb
commit e9042f7666
68 changed files with 6775 additions and 3039 deletions
@@ -0,0 +1,15 @@
using Disco.Models.Repository;
using System.Collections.Generic;
namespace Disco.Services.Devices.Importing
{
internal interface IDeviceImportCache
{
Device FindDevice(string DeviceSerialNumber);
IEnumerable<Device> Devices { get; }
IEnumerable<DeviceModel> DeviceModels { get; }
IEnumerable<DeviceProfile> DeviceProfiles { get; }
IEnumerable<DeviceBatch> DeviceBatches { get; }
}
}