Files
SkydiveLogs/Back/skydiveLogs-api.DomainService/Repositories/IStatsRepository.cs
sandre b25e947d62 Split tables for the stats (#6)
Reviewed-on: #6
Co-authored-by: sandre <perso@sebastienandre.com>
Co-committed-by: sandre <perso@sebastienandre.com>
2026-01-26 13:38:07 +00:00

20 lines
423 B
C#

using skydiveLogs_api.Domain;
using System.Collections.Generic;
namespace skydiveLogs_api.DomainService.Repositories
{
public interface IStatsRepository<T>
{
#region Public Methods
IEnumerable<T> GetAll(User user);
int Add(IEnumerable<T> newEntity);
bool Update(IEnumerable<T> updatedEntity, User user);
bool Delete(User user);
#endregion Public Methods
}
}