Add a DB init service when there is not database.

This commit is contained in:
Sébastien André
2020-12-18 18:28:30 +01:00
parent f2875eb969
commit 2991a132bc
15 changed files with 1267 additions and 145 deletions

View File

@@ -0,0 +1,9 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Business.Interface
{
public interface IInitDbService
{
public void GenerateDb();
}
}