add missing overload to interface

This commit is contained in:
Pilzinsel64
2025-08-21 11:01:49 +02:00
parent 388977fe04
commit 6c09eb15ff
2 changed files with 2 additions and 1 deletions

View File

@@ -8,5 +8,6 @@ public interface IBaseClient<T> where T : IDataObject
Task<T> Get(int id); Task<T> Get(int id);
Task<IEnumerable<T>> GetAll(); Task<IEnumerable<T>> GetAll();
Task<IEnumerable<T>> GetAll(int offset, int amount); Task<IEnumerable<T>> GetAll(int offset, int amount);
Task<IEnumerable<T>> GetAll(int ids, int offset, int amount);
Task<T> Save(T item); Task<T> Save(T item);
} }

View File

@@ -8,7 +8,7 @@
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<Version>2.6.9</Version> <Version>2.6.10</Version>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>