2025-07-21 18:49:49 +08:00
|
|
|
namespace DMS.Core.Interfaces
|
2025-07-19 09:25:01 +08:00
|
|
|
{
|
|
|
|
|
public interface IDatabaseService
|
|
|
|
|
{
|
2025-07-21 22:02:42 +08:00
|
|
|
void InitializeTables();
|
|
|
|
|
void InitializeTableIndex();
|
|
|
|
|
void InitializeMenus();
|
2025-07-21 23:04:28 +08:00
|
|
|
|
|
|
|
|
bool IsAnyTable(string tableName);
|
2025-07-19 09:25:01 +08:00
|
|
|
}
|
|
|
|
|
}
|