Update interface of StatsRepo

This commit is contained in:
2026-01-23 16:54:05 +01:00
parent 387228a3cf
commit 656b578f9b
11 changed files with 6 additions and 152 deletions

View File

@@ -1,13 +1,18 @@
using skydiveLogs_api.Domain;
using System.Collections.Generic;
namespace skydiveLogs_api.DomainService.Repositories
{
public interface IStatsRepository<T> : IRepository<T>
public interface IStatsRepository<T>
{
#region Public Methods
T GetAll(User user);
int Add(T newEntity);
bool Update(T updated);
#endregion Public Methods
}
}