18 lines
No EOL
494 B
C#
18 lines
No EOL
494 B
C#
namespace Kurs.Notifications.Domain;
|
|
|
|
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 = "Notifications";
|
|
}
|
|
|
|
public static class TablePrefix
|
|
{
|
|
public static string ByName(string tableName)
|
|
{
|
|
return $"{Prefix.DbTablePlatform}_{Prefix.MenuPlatform}_{tableName}";
|
|
}
|
|
} |