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