11 lines
248 B
C#
11 lines
248 B
C#
using skydiveLogs_api.Domain;
|
|
using System.Collections.Generic;
|
|
|
|
namespace skydiveLogs_api.DomainService.Repositories
|
|
{
|
|
public interface IGearRepository : IRepository<Gear>
|
|
{
|
|
IEnumerable<Gear> GetAll(User connectedUser);
|
|
}
|
|
}
|