Add repos + repo interfaces + models + ioc

This commit is contained in:
2026-01-22 15:36:12 +01:00
parent 677e74df10
commit 7bf270985b
31 changed files with 965 additions and 18 deletions

View File

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