21 lines
391 B
C#
21 lines
391 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using skydiveLogs_api.Model;
|
|
|
|
namespace skydiveLogs_api.Business.Interface
|
|
{
|
|
public interface IJumpService
|
|
{
|
|
IEnumerable<Jump> GetAllJumps();
|
|
|
|
Jump GetJumpById(int id);
|
|
|
|
void AddNewJump(Jump jump);
|
|
|
|
void UpdateJump(int id, Jump jump);
|
|
|
|
void DeleteJumpById(int id);
|
|
}
|
|
}
|