Add an interface for the stats repo

This commit is contained in:
2026-01-23 15:03:38 +01:00
parent 111e3f2ef7
commit 387228a3cf
11 changed files with 23 additions and 10 deletions

View File

@@ -0,0 +1,13 @@
using skydiveLogs_api.Domain;
namespace skydiveLogs_api.DomainService.Repositories
{
public interface IStatsRepository<T> : IRepository<T>
{
#region Public Methods
T GetAll(User user);
#endregion Public Methods
}
}