Files
SkydiveLogs/Back/skydiveLogs-api.Data/Interface/IJumpRepository.cs
Sébastien André eee6f596ac Update about the relation column "User" for the images
and begin to add a column in "Aircraft"
2020-07-30 18:29:41 +02:00

12 lines
227 B
C#

using skydiveLogs_api.Model;
using System.Collections.Generic;
namespace skydiveLogs_api.Data.Interface
{
public interface IJumpRepository : IRepository<Jump>
{
IEnumerable<Jump> GetAll(User user);
}
}