Update the repository pattern
This commit is contained in:
@@ -1,13 +1,9 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using skydiveLogs_api.Model;
|
||||
using skydiveLogs_api.Model;
|
||||
|
||||
|
||||
namespace skydiveLogs_api.Data.Interface
|
||||
{
|
||||
public interface IAircraftRepository
|
||||
public interface IAircraftRepository : IRepository<Aircraft>
|
||||
{
|
||||
IEnumerable<Aircraft> GetAllAircrafts();
|
||||
Aircraft GetAircraftById(int id);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user