11 lines
229 B
C#
11 lines
229 B
C#
namespace DMS.Core.Interfaces
|
|
{
|
|
public interface IDatabaseService
|
|
{
|
|
void InitializeTables();
|
|
void InitializeTableIndex();
|
|
void InitializeMenus();
|
|
|
|
bool IsAnyTable(string tableName);
|
|
}
|
|
} |