Adds an item (an associate between a user defined class and the corresponding Entity) to the internal Dictionary
s
the entity name
t
typeof of the class to be associated with the entity name
When using a custom database with the CSStorageServerManagerDemo_Original.exe, you define a class that derives from class CatalogEntity for each table in your database. You then call AddItem to associate the class with the corresponding entity name. For example, if you have four classes (MyPatient, MyStudy, MySeries, and MyInstance) that correspond to your four custom database tables (Patient, Study, Series, and Instance), then you would call AddItem four times:
RegisteredEntities.Items.Add(RegisteredEntities.PatientEntityName, typeof(MyPatient));
RegisteredEntities.Items.Add(RegisteredEntities.StudyEntityName, typeof(MyStudy));
RegisteredEntities.Items.Add(RegisteredEntities.SeriesEntityName, typeof(MySeries));
RegisteredEntities.Items.Add(RegisteredEntities.InstanceEntityName, typeof(MyInstance));
For more information, refer to LEAD Medical Storage Server Custom Database.
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET