/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

  1. using ClusterConcept.Shared.Model;
  2. using ClusterConcept.Shared.Model.ComEntity;
  3. using ClusterConcept.Shared.Model.ComEntity.Type;
  4. using JetBrains.Annotations;
  5. namespace ClusterConcept.EntityServer.Infrastructure.Interface {
  6. public interface IEntityStore {
  7. [NotNull]
  8. PBasicEntity Get([NotNull] PEntityType type, long id);
  9. void Delete([NotNull] PEntityType type);
  10. void Delete([NotNull] PEntityType type, long id);
  11. }
  12. }