Auto clean code
This commit is contained in:
@@ -1,20 +1,22 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
using skydiveLogs_api.Domain;
|
||||
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
{
|
||||
public interface IAircraftService
|
||||
{
|
||||
IEnumerable<Aircraft> GetAllAircrafts();
|
||||
|
||||
Aircraft GetAircraftById(int id);
|
||||
#region Public Methods
|
||||
|
||||
void AddNewAircraft(Aircraft aircraft);
|
||||
|
||||
void DeleteAircraftById(int id);
|
||||
|
||||
Aircraft GetAircraftById(int id);
|
||||
|
||||
IEnumerable<Aircraft> GetAllAircrafts();
|
||||
|
||||
void UpdateAircraft(int id, Aircraft aircraft);
|
||||
|
||||
void DeleteAircraftById(int id);
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user