using DMS.Core.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace DMS.Infrastructure.Interfaces { public interface IDeviceService { Task AddAsync(Device device); Task> GetAllAsync(); } }