MarkMeader
2 years agoNew Contributor III
Workspace assemblies - Call functions from another file within the same assembly
Hi
I'm trying to find out the correct way to reference a function in another Workspace assemblies file.
For example say i have:
1) XFBR business rule assembly file (ParamHelper.Vb)
2) Dashboard Extender business rule assembly file (SolutionHelper.Vb)
I want to call a function that is in SolutionHelper.vb from my code that sits in ParamHelper.vb
In standard business rules this was easily achieved using Referenced Assemblies in the business rule property
and then adding something along the lines of this below:
Dim _MYHelper As New OneStream.BusinessRule.DashboardExtender.HPB_SolutionHelper.MainClass
Just not sure how the same is achieved using assemblies
Thank you