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