Ajout de l'implémentation des stats par dz, avion, piège et annèe.
This commit is contained in:
18
Back/skydiveLogs-api.Business/Interface/IStatsService.cs
Normal file
18
Back/skydiveLogs-api.Business/Interface/IStatsService.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using skydiveLogs_api.Model;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.Business.Interface
|
||||
{
|
||||
public interface IStatsService
|
||||
{
|
||||
IEnumerable<Statistic> GetStatsByDz();
|
||||
|
||||
IEnumerable<Statistic> GetStatsByAircraft();
|
||||
|
||||
IEnumerable<Statistic> GetStatsByJumpType();
|
||||
|
||||
IEnumerable<Statistic> GetStatsByRig();
|
||||
|
||||
IEnumerable<Statistic> GetStatsByYear();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user