using System.Collections.Generic; using skydiveLogs_api.Model; namespace skydiveLogs_api.Data.Interface { public interface IJumpRepository { IEnumerable GetAllJumps(); Jump GetJumpById(int id); bool AddJump(Jump newJump); } }