Begin with add services and interfaces

This commit is contained in:
2026-01-22 16:30:47 +01:00
parent 7bf270985b
commit eb42aebfd1
23 changed files with 3717 additions and 407 deletions

View File

@@ -0,0 +1,13 @@
using skydiveLogs_api.Domain;
using System.Collections.Generic;
namespace skydiveLogs_api.DomainBusiness.Interfaces
{
public interface IStatsByYearService
{
#region Public Methods
IEnumerable<Statistic> GetStats();
#endregion Public Methods
}
}