Files
SkydiveLogs/Back/skydiveLogs-api.DomainBusiness/Interfaces/IInitDbService.cs
Sébastien ANDRE 2b880231a1 Manage the update of some data at the
start of the database
2023-08-23 20:30:53 +02:00

12 lines
237 B
C#

namespace skydiveLogs_api.DomainBusiness.Interfaces
{
public interface IInitDbService
{
#region Public Methods
public void GenerateDb();
public void Update();
#endregion Public Methods
}
}