You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Separate Commands and Queries - the method either calculates, transforms, or otherwise provides a value, or does something that changes the state of the system.
Break down monolothical classes that are doing too much into smaller, specialized ones.
Favor readonly properties over read-write ones: wherever there's a read-write property, the class is just a "dumb" holder of data; instead, it should own its data and only provide them via methods.
The text was updated successfully, but these errors were encountered:
At this point, the code is procedural.
The goal is as follows:
The text was updated successfully, but these errors were encountered: