add missing overload to interface
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Version>2.6.9</Version>
|
<Version>2.6.10</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user