[성현모] TRA GetDBContext 기능 추가

This commit is contained in:
SHM
2025-08-29 14:37:57 +09:00
parent e6f0f6d575
commit adc66987c0
5 changed files with 148 additions and 14 deletions

View File

@ -12,7 +12,7 @@ namespace SystemX.Core.Services
{
public class DbContextProvider
{
private Dictionary<string, DataBase> DBDictionary = new Dictionary<string, DataBase>();
public Dictionary<string, DataBase> DBDictionary { get; private set; } = new Dictionary<string, DataBase>();
public void SetDBList(IList<DataBase>? DBList)
{
@ -40,6 +40,6 @@ namespace SystemX.Core.Services
}
return null;
}
}
}
}