14 lines
289 B
C#
14 lines
289 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using skydiveLogs_api.Model;
|
|
|
|
namespace skydiveLogs_api.Data.Interface
|
|
{
|
|
public interface IAircraftRepository
|
|
{
|
|
IEnumerable<Aircraft> GetAllAircrafts();
|
|
Aircraft GetAircraftById(int id);
|
|
}
|
|
}
|