/src/ClusterConcept.EntityServer/Infrastructure/Interface/IEntityStore.cs
https://bitbucket.org/Fijo/clusterconcept · C# · 13 lines · 12 code · 1 blank · 0 comment · 0 complexity · f36e92ed79b6646a8768f0467dada85e MD5 · raw file
- using ClusterConcept.Shared.Model;
- using ClusterConcept.Shared.Model.ComEntity;
- using ClusterConcept.Shared.Model.ComEntity.Type;
- using JetBrains.Annotations;
- namespace ClusterConcept.EntityServer.Infrastructure.Interface {
- public interface IEntityStore {
- [NotNull]
- PBasicEntity Get([NotNull] PEntityType type, long id);
- void Delete([NotNull] PEntityType type);
- void Delete([NotNull] PEntityType type, long id);
- }
- }