I have a \"meter\" class. One property of \"meter\" is another class called \"production\".
I need to access to a property of meter class (power rating) from production clas
You could maybe add a method to your Production object called 'SetPowerRating(int)' which sets a property in Production, and call this in your Meter object before using the property in the Production object?