using DMS.Core.Models; using DMS.Core.Enums; using System.Collections.Generic; using System.Threading.Tasks; namespace DMS.Infrastructure.Interfaces { public interface IDeviceRepository { Task UpdateAsync(Device device); Task> GetAllAsync(); Task GetByIdAsync(int id); Task DeleteAsync(Device device, List menus); Task AddAsync(Device device); } }