Manage the update of some data at the
start of the database
This commit is contained in:
@@ -15,7 +15,7 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
|
||||
IEnumerable<Aircraft> GetAllAircrafts();
|
||||
|
||||
void UpdateAircraft(int id, Aircraft aircraft);
|
||||
bool UpdateAircraft(int id, Aircraft aircraft, bool resetCache = true);
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
|
||||
bool RemoveToFavorite(int dzId);
|
||||
|
||||
bool UpdateDz(int id, DropZone dropZone);
|
||||
bool UpdateDz(int id, DropZone dropZone, bool resetCache = true);
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
#region Public Methods
|
||||
|
||||
public void GenerateDb();
|
||||
public void Update();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@ namespace skydiveLogs_api.DomainBusiness.Interfaces
|
||||
|
||||
JumpType GetJumpTypeById(int id);
|
||||
|
||||
bool UpdateJumpType(int id, JumpType value);
|
||||
bool UpdateJumpType(int id, JumpType value, bool resetCache = true);
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user