erp-platform/api/modules/Kurs.Settings/Kurs.Settings.Domain/SettingsDbProperties.cs
2025-11-01 13:27:15 +03:00

18 lines
No EOL
477 B
C#

namespace Kurs.Settings;
public static class Prefix
{
public static string DbTablePlatform { get; set; } = "Plat";
public static string MenuPlatform { get; set; } = "P";
public static string? DbSchema { get; set; } = null;
public const string ConnectionStringName = "Settings";
}
public static class TablePrefix
{
public static string ByName(string tableName)
{
return $"{Prefix.DbTablePlatform}_{Prefix.MenuPlatform}_{tableName}";
}
}