14 lines
303 B
C#
14 lines
303 B
C#
using skydiveLogs_api.Domain;
|
|
using System.Collections.Generic;
|
|
|
|
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
|
{
|
|
public interface IStatsForLastYearByDzService
|
|
{
|
|
#region Public Methods
|
|
|
|
IEnumerable<StatsForLastYearByDz> GetStats();
|
|
|
|
#endregion Public Methods
|
|
}
|
|
} |