12 lines
228 B
C#
12 lines
228 B
C#
using skydiveLogs_api.Model;
|
|
using System.Collections.Generic;
|
|
|
|
namespace skydiveLogs_api.Data.Interface
|
|
{
|
|
public interface IJumpRepository : IRepository<Jump>
|
|
{
|
|
IEnumerable<Jump> GetAll(int userId);
|
|
|
|
}
|
|
}
|