A colleague and I designed a system for our customer, and in our opinion we created a nice clean design. But I\'m having problems with some coupling we\'ve introduced. I could t
For the BLL my idea was to add a property on Medicine like this:
public Boolean IsSoluble { get { return AdministrationRoute.Soluble; } }
Which is what I think is described in the articles about Law of Demeter. But how much will this clutter the class?