Hi,
I'm using a model UserRepository->User
The Repository is used to Save and Load the User.
I want to be able to set the ID in the Repository, but I don't want it to be access by UI.
The User and Repository are found in a Core project, and the UI in a Web.
Is there a way to do this, like a modifier for the property, or should I put the ID in the User contructor ?
Thanks