Backend/e-suite.WorkBench/eSuite.WorkBench/Services/IDbService.cs
2026-01-20 21:50:10 +00:00

13 lines
318 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
namespace eSuite.WorkBench.Services
{
public interface IDbService
{
Task DropDatabaseAsync();
Task BackupDatabaseAsync();
IEnumerable<string> BackupsList();
Task RestoreDatabaseAsync(string backupName);
}
}