using skydiveLogs_api.Domain; using System.Collections.Generic; namespace skydiveLogs_api.DomainBusiness.Interfaces { public interface IStatsService { #region Public Methods SimpleSummary GetSimpleSummary(); IEnumerable GetStatsByAircraft(); IEnumerable GetStatsByDz(); IEnumerable GetStatsByGear(); IEnumerable GetStatsByJumpType(); IEnumerable GetStatsByYear(); IEnumerable GetStatsForLastMonthByDz(); IEnumerable GetStatsForLastMonthByJumpType(); IEnumerable GetStatsForLastYearByDz(); IEnumerable GetStatsForLastYearByJumpType(); IEnumerable GetStatsByYearByJumpType(); void Reset(); #endregion Public Methods } }