Split tables for the stats (#6)
Reviewed-on: #6 Co-authored-by: sandre <perso@sebastienandre.com> Co-committed-by: sandre <perso@sebastienandre.com>
This commit was merged in pull request #6.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
public interface IStatsByAircraftService
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<StatsByAircraft> GetStats();
|
||||
|
||||
void Reset();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
public interface IStatsByDzService
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<StatsByDz> GetStats();
|
||||
|
||||
void Reset();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
public interface IStatsByGearService
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<StatsByGear> GetStats();
|
||||
|
||||
void Reset();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
public interface IStatsByJumpTypeService
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<StatsByJumpType> GetStats();
|
||||
|
||||
void Reset();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
public interface IStatsByYearByJumpTypeService
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<StatsByYearByJumpType> GetStats();
|
||||
|
||||
void Reset();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
public interface IStatsByYearService
|
||||
{
|
||||
#region Public Methods
|
||||
IEnumerable<StatsByYear> GetStats();
|
||||
|
||||
void Reset();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
public interface IStatsForLastMonthByDzService
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<StatsForLastMonthByDz> GetStats();
|
||||
|
||||
void Reset();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
public interface IStatsForLastMonthByJumpTypeService
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<StatsForLastMonthByJumpType> GetStats();
|
||||
|
||||
void Reset();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
public interface IStatsForLastYearByDzService
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<StatsForLastYearByDz> GetStats();
|
||||
|
||||
void Reset();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
public interface IStatsForLastYearByJumpTypeService
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable<StatsForLastYearByJumpType> GetStats();
|
||||
|
||||
void Reset();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user