13 lines
276 B
C#
13 lines
276 B
C#
using skydiveLogs_api.Domain;
|
|
|
|
namespace skydiveLogs_api.DomainService.Repositories
|
|
{
|
|
public interface IStatsByYearRepository : IRepository<StatsByYear>
|
|
{
|
|
#region Public Methods
|
|
|
|
StatsByYear GetAll(User user);
|
|
|
|
#endregion Public Methods
|
|
}
|
|
} |