27 lines
583 B
C#
27 lines
583 B
C#
using System.Collections.Generic;
|
|
|
|
using skydiveLogs_api.Domain;
|
|
|
|
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
|
{
|
|
public interface IJumpService
|
|
{
|
|
#region Public Methods
|
|
|
|
void AddNewJump(int aircraftId,
|
|
int dzId,
|
|
int jumpTypeId,
|
|
int gearId,
|
|
Jump jump);
|
|
|
|
void DeleteJumpById(int id);
|
|
|
|
IEnumerable<Jump> GetAllJumps();
|
|
|
|
Jump GetJumpById(int id);
|
|
|
|
void UpdateJump(int id, Jump jump);
|
|
|
|
#endregion Public Methods
|
|
}
|
|
} |