mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-12 21:38:38 +00:00
16 lines
477 B
C#
16 lines
477 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Artemis.Storage.Entities.Workshop;
|
|
|
|
namespace Artemis.Storage.Repositories.Interfaces;
|
|
|
|
public interface IEntryRepository : IRepository
|
|
{
|
|
void Add(EntryEntity entryEntity);
|
|
void Remove(EntryEntity entryEntity);
|
|
EntryEntity? Get(Guid id);
|
|
EntryEntity? GetByEntryId(long entryId);
|
|
List<EntryEntity> GetAll();
|
|
void Save(EntryEntity entryEntity);
|
|
void Save(IEnumerable<EntryEntity> entryEntities);
|
|
} |