Files
SkydiveLogs/Back/skydiveLogs-api.Business/Interface/IStatsService.cs
2020-01-29 14:24:04 +01:00

19 lines
418 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();
}
}