namespace Kurs.Notifications.Domain; public static class Prefix { public static string DbTablePlatform { get; set; } = "P"; 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}"; } }