Question
2
Replies
190
Views
Posted: May 21, 2019
Last activity: May 22, 2019
Closed
Organization level data class rules
How to choose ruleset for rules to need to be created in Organisation layer data class but are of one of the application business specific.?
My confusion is to choose between Org ruleset or Application ruleset?
Hello,
If you think the data in the data class will be used by more than one part of the organization, then the org layer makes sense. If it really is specific to that application/business function, then avoiding cluttering the org layer and keeping close to the work at the Application layer makes sense. So, you have the classes defined at the org layer available at the App layer, but you don't need to define all of the App specific rules in that layer, even if they are built directly on the Org layer classes. If I understood your question correctly, I'd say put them into the App layer.
Thanks,
Mike