e9042f7666
Dynamic device importing. better input parsing and 5 additional import fields.
15 lines
439 B
C#
15 lines
439 B
C#
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; }
|
|
}
|
|
} |