11 lines
239 B
C#
11 lines
239 B
C#
using skydiveLogs_api.Domain;
|
|
using System.Collections.Generic;
|
|
|
|
namespace skydiveLogs_api.DomainService.Repositories
|
|
{
|
|
public interface IJumpRepository : IRepository<Jump>
|
|
{
|
|
IEnumerable<Jump> GetAll(User user);
|
|
}
|
|
}
|