Refacto
This commit is contained in:
@@ -7,7 +7,7 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<Statistic> GetStats();
|
||||
IEnumerable<StatsByDz> GetStats();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<Statistic> GetStats();
|
||||
IEnumerable<StatsByGear> GetStats();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<Statistic> GetStats();
|
||||
IEnumerable<StatsByJumpType> GetStats();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<Statistic> GetStats();
|
||||
IEnumerable<StatsByYearByJumpType> GetStats();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
public interface IStatsByYearService
|
||||
{
|
||||
#region Public Methods
|
||||
IEnumerable<Statistic> GetStats();
|
||||
IEnumerable<StatsByYear> GetStats();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<Statistic> GetStats();
|
||||
IEnumerable<StatsForLastMonthByDz> GetStats();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<Statistic> GetStats();
|
||||
IEnumerable<StatsForLastMonthByJumpType> GetStats();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<Statistic> GetStats();
|
||||
IEnumerable<StatsForLastYearByDz> GetStats();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<Statistic> GetStats();
|
||||
IEnumerable<StatsForLastYearByJumpType> GetStats();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
@@ -8,6 +9,26 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
|
||||
SimpleSummary GetSimpleSummary();
|
||||
|
||||
IEnumerable<Statistic> GetStatsByAircraft();
|
||||
|
||||
IEnumerable<Statistic> GetStatsByDz();
|
||||
|
||||
IEnumerable<Statistic> GetStatsByGear();
|
||||
|
||||
IEnumerable<Statistic> GetStatsByJumpType();
|
||||
|
||||
IEnumerable<Statistic> GetStatsByYear();
|
||||
|
||||
IEnumerable<Statistic> GetStatsForLastMonthByDz();
|
||||
|
||||
IEnumerable<Statistic> GetStatsForLastMonthByJumpType();
|
||||
|
||||
IEnumerable<Statistic> GetStatsForLastYearByDz();
|
||||
|
||||
IEnumerable<Statistic> GetStatsForLastYearByJumpType();
|
||||
|
||||
IEnumerable<Statistic> GetStatsByYearByJumpType();
|
||||
|
||||
void Reset();
|
||||
|
||||
#endregion Public Methods
|
||||
|
||||
Reference in New Issue
Block a user