erp-platform/api/modules/Kurs.Languages/Kurs.Languages.Domain/LanguagesDbProperties.cs
2025-11-01 15:27:08 +03:00

18 lines
466 B
C#

namespace Kurs.Languages;
public static class Prefix
{
public static string MenuPrefix { get; set; } = "Plat";
public static string HostPrefix { get; set; } = "H";
public static string? DbSchema { get; set; } = null;
public const string ConnectionStringName = "Languages";
}
public static class TablePrefix
{
public static string ByName(string tableName)
{
return $"{Prefix.MenuPrefix}_{Prefix.HostPrefix}_{tableName}";
}
}