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-11-01 12:27:08 +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 = "Languages";
|
|
|
|
|
|
}
|
2025-10-20 11:32:41 +00:00
|
|
|
|
|
|
|
|
|
|
public static class TablePrefix
|
|
|
|
|
|
{
|
|
|
|
|
|
public static string ByName(string tableName)
|
|
|
|
|
|
{
|
2025-11-01 12:27:08 +00:00
|
|
|
|
return $"{Prefix.MenuPrefix}_{Prefix.HostPrefix}_{tableName}";
|
2025-10-20 11:32:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|