Closed paulroho closed 7 years ago
To avoid confusion of the participants, avoid to query the product instance within the SpecsDriver class.
Eg. (C#): instead of
var product = _repository.GetProductByName(productName); var ean = product.Number;
do
var ean = GetEanByProductName(productName);
To avoid confusion of the participants, avoid to query the product instance within the SpecsDriver class.
Eg. (C#): instead of
do