Fat-Client:

Es ist möglich, allen Termin-Einladungen auf einmal zuzusagen

MoK:
DevExpress von Version 17.1 auf 21.1 aktualisiert
Reports testweise eingebaut
DevExpress-Scheduler testweise eingebaut
This commit is contained in:
Lyndon Jetten
2021-10-13 16:00:33 +02:00
parent 365027afc9
commit 5939aef72c
660 changed files with 64264 additions and 11126 deletions

View File

@@ -25,13 +25,17 @@ namespace BS.Shared.Core
public static T GetInstance(string specificId, string tenant = null)
{
if (specificId == null)
specificId = tenant;
{
specificId = tenant;
}
if (!string.IsNullOrEmpty(specificId))
{
if (_InstanceCache.ContainsKey(specificId))
{
return _InstanceCache[specificId];
}
var cbSpecific = typeof(T).Assembly.GetTypes()
.Where(i => typeof(T).IsAssignableFrom(i))
.FirstOrDefault(t => t.GetCustomAttributes(typeof(IDSpecificClassAttribute), true)