erp-platform/api/modules/Kurs.Languages/Kurs.Languages.Domain/LanguagesDbProperties.cs

19 lines
477 B
C#
Raw Normal View History

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