using skydiveLogs_api.Domain; using System.Collections.Generic; namespace skydiveLogs_api.DomainService.Repositories { public interface IJumpRepository : IRepository { IEnumerable GetAll(User user); bool DeleteById(int id); } }