Hi,
I am coming through the example in documentation Invoice app example | DataMiner Docs as a DOM example but I can't understand the script Should I build an automation script with all block of C# in the example or How ? . Does anyone have an automation script on DOM as example?
Hi David, yes using the C# block from Automation is the way forward to create a DOM set-up.
You can opt to configure it all in one Automation script or compile Automation scripts as dll and reference those in other Automation scripts(using statements), so seperating everything a little bit and make it re-usable.
All the types of the example are located in the SLNetTypes.dll assembly. Skyline.DataMiner.Net.Apps.DataMinerObjectModel.DomHelper, Skyline.DataMiner.Net.Apps.Modules.ModuleSettingsHelper, Skyline.DataMiner.Net.Sections.FieldDescriptor, Skyline.DataMiner.Net.Apps.DataMinerObjectModel.DomDefinition, Skyline.DataMiner.Net.Sections.SectionDefinitionID, Skyline.DataMiner.Net.Apps.DataMinerObjectModel.DomInstanceExposers
Thank you Kevin, but What is the namespace should I include in the Automation Script ? Do you have a small example would be great ?