Files
SkydiveLogs/Back/skydiveLogs-api.Data/Interface/IJumpRepository.cs
2019-09-26 15:31:17 +02:00

13 lines
235 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using skydiveLogs_api.Model;
namespace skydiveLogs_api.Data.Interface
{
public interface IJumpRepository
{
IEnumerable<Jump> GetAllJumps();
}
}