18 lines
483 B
C#
18 lines
483 B
C#
namespace Sozsoft.Notifications.Domain;
|
|
|
|
public static class Prefix
|
|
{
|
|
public static string MenuPrefix { get; set; } = "Sas";
|
|
public static string HostPrefix { get; set; } = "H";
|
|
public static string? DbSchema { get; set; } = null;
|
|
|
|
public const string ConnectionStringName = "Notifications";
|
|
}
|
|
|
|
public static class TablePrefix
|
|
{
|
|
public static string ByName(string tableName)
|
|
{
|
|
return $"{Prefix.MenuPrefix}_{Prefix.HostPrefix}_{tableName}";
|
|
}
|
|
}
|