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