Files
SkydiveLogs/Back/skydiveLogs-api.Business/Interface/IStatsService.cs
Sébastien André 6a5e9020d5 Add an action to retrieve un simple summary with
the total of jumps and the last jump
2020-03-03 15:45:36 +01:00

29 lines
711 B
C#

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> GetStatsByGear();
IEnumerable<Statistic> GetStatsByYear();
IEnumerable<Statistic> GetStatsForLastYearByDz();
IEnumerable<Statistic> GetStatsForLastYearByJumpType();
IEnumerable<Statistic> GetStatsForLastMonthByDz();
IEnumerable<Statistic> GetStatsForLastMonthByJumpType();
SimpleSummary GetSimpleSummary();
}
}