29 lines
711 B
C#
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();
|
|
}
|
|
}
|