mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
15 lines
470 B
C#
15 lines
470 B
C#
using System.Collections.Generic;
|
|
using Artemis.Storage.Entities.Surface;
|
|
|
|
namespace Artemis.Storage.Repositories.Interfaces
|
|
{
|
|
public interface IDeviceRepository : IRepository
|
|
{
|
|
void Add(DeviceEntity deviceEntity);
|
|
void Remove(DeviceEntity deviceEntity);
|
|
DeviceEntity Get(string id);
|
|
List<DeviceEntity> GetAll();
|
|
void Save(DeviceEntity deviceEntity);
|
|
void Save(IEnumerable<DeviceEntity> deviceEntities);
|
|
}
|
|
} |