using skydiveLogs_api.Model; namespace skydiveLogs_api.Data.Interface { public interface IAircraftRepository : IRepository { bool AddAircraft(Aircraft newAircraft); } }