Module Boundaries and Demeter
I was doing a code review recently, and I saw something like this: public class SomeService { public void Update(Customer customer) { //Do update stuff } public void Delete(int customerId) { //Do delete stuff } } What would you say if you saw code like this? Do you see any problem in the vein of…
