Files
SkydiveLogs/Back/skydiveLogs-api.DomainService/Repositories/IJumpRepository.cs
2021-04-20 10:38:37 +02:00

12 lines
272 B
C#

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