erp-platform/api/modules/Kurs.Settings/Kurs.Settings.Domain/SettingsDbProperties.cs

18 lines
463 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
namespace Kurs.Settings;
2025-10-20 11:32:41 +00:00
public static class Prefix
2025-05-06 06:45:49 +00:00
{
public static string MenuPrefix { get; set; } = "Plat";
public static string HostPrefix { get; set; } = "H";
2025-05-06 06:45:49 +00:00
public static string? DbSchema { get; set; } = null;
public const string ConnectionStringName = "Settings";
}
2025-10-20 11:32:41 +00:00
public static class TablePrefix
{
public static string ByName(string tableName)
{
return $"{Prefix.MenuPrefix}_{Prefix.HostPrefix}_{tableName}";
2025-10-20 11:32:41 +00:00
}
}