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