GetAll also for child client

This commit is contained in:
2025-05-14 12:10:44 +02:00
parent 0a86856876
commit 19efc1c69e
5 changed files with 11 additions and 6 deletions

View File

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