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

18 lines
480 B
C#

namespace Kurs.Languages;
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 = "Languages";
}
public static class TablePrefix
{
public static string ByName(string tableName)
{
return $"{Prefix.DbTablePlatform}_{Prefix.MenuPlatform}_{tableName}";
}
}