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

20 lines
466 B
C#
Raw Normal View History

2025-11-11 19:49:52 +00:00
namespace Erp.Languages;
2025-05-06 06:45:49 +00:00
2025-10-20 11:32:41 +00:00
public static class Prefix
2025-05-06 06:45:49 +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)
{
return $"{Prefix.MenuPrefix}_{Prefix.HostPrefix}_{tableName}";
2025-10-20 11:32:41 +00:00
}
}
2025-11-11 19:49:52 +00:00