You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/PKSim.R/Exchange/BuildingBlockCreator.cs
+44-5Lines changed: 44 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2,19 +2,25 @@
2
2
usingOSPSuite.Core.Snapshots;
3
3
usingOSPSuite.Core.Snapshots.Mappers;
4
4
usingOSPSuite.R.Domain;
5
+
usingPKSim.Assets;
5
6
usingPKSim.Core.Mappers;
6
7
usingPKSim.Core.Model;
8
+
usingPKSim.Core.Repositories;
9
+
usingPKSim.Core.Services;
7
10
usingPKSim.Core.Snapshots.Mappers;
11
+
usingSystem;
12
+
usingstaticPKSim.Assets.PKSimConstants.UI;
8
13
9
14
namespacePKSim.R.Exchange;
10
15
11
16
/// <summary>
12
-
/// The class is intended to allow MoBi to dynamically load and call the method and receive a serialized individual building block
13
-
/// We exchange data between PK-Sim and MoBi domains only through serializing and deserializing due to differences in the dimension systems.
14
-
/// The systems are different in the sense that they each rely on dimensions being singular in the app, but by exchanging objects, that will not be the case.
15
-
/// You will have two Mass dimension objects for example.
17
+
/// The class is intended to allow MoBi to dynamically load and call the method and receive a serialized
18
+
/// building blocks. We exchange data between PK-Sim and MoBi domains only through serializing and deserializing
19
+
/// due to differences in the dimension systems. The systems are different in the sense that they each rely on
20
+
/// dimensions being singular in the app, but by exchanging objects, that will not be the case.
21
+
/// You will have two Mass dimension objects for example.
0 commit comments