Files
SkydiveLogs/Back/skydiveLogs-api.Business/Interface/IStatsService.cs

19 lines
417 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> GetStatsByRig();
IEnumerable<Statistic> GetStatsByYear();
}
}