using Disco.Models.Repository; using System.Collections.Generic; namespace Disco.Services.Devices.Importing { internal interface IDeviceImportCache { Device FindDevice(string DeviceSerialNumber); IEnumerable Devices { get; } IEnumerable DeviceModels { get; } IEnumerable DeviceProfiles { get; } IEnumerable DeviceBatches { get; } } }