using System.Collections.Generic; using skydiveLogs_api.Model; namespace skydiveLogs_api.Business.Interface { public interface IJumpService { IEnumerable 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); } }