/**
* {@inheritDoc}
*/
public void updateProduct(ProductWithCustomersDto object) {
Product domainObject = customerServiceModelDomainService
.readProduct(object.getId());
productWithCustomersDtoTranslator.fromDto(object, domainObject);
customerServiceModelDomainService.updateProduct(domainObject);
}