Add comments by AI

This commit is contained in:
2026-04-09 20:06:25 +02:00
parent 800d384d8d
commit faa4709aea
6 changed files with 170 additions and 6 deletions
@@ -27,6 +27,9 @@ namespace skydiveLogs_api.DomainBusiness
#region Public Methods
/// <summary>
/// Updates the existing data in the database.
/// </summary>
public void Update()
{
UpdateAircrafts();
@@ -38,6 +41,9 @@ namespace skydiveLogs_api.DomainBusiness
_cacheService.Delete(CacheType.JumpType);
}
/// <summary>
/// Generates the database structure and initial data.
/// </summary>
public void GenerateDb()
{
LoadAircrafts();
@@ -193,4 +199,4 @@ namespace skydiveLogs_api.DomainBusiness
#endregion Private Fields
}
}
}