11 lines
235 B
C#
11 lines
235 B
C#
using skydiveLogs_api.Model;
|
|
using System.Collections.Generic;
|
|
|
|
namespace skydiveLogs_api.Data.Interface
|
|
{
|
|
public interface IGearRepository : IRepository<Gear>
|
|
{
|
|
IEnumerable<Gear> GetAll(User connectedUser);
|
|
}
|
|
}
|