use of com.salesmanager.core.model.catalog.product.instance.ProductInstanceGroup in project shopizer by shopizer-ecommerce.
the class PersistableProductIntanceGroupMapper method convert.
@Override
public ProductInstanceGroup convert(PersistableProductInstanceGroup source, MerchantStore store, Language language) {
Validate.notNull(source, "PersistableProductInstanceGroup cannot be null");
Validate.notNull(store, "MerchantStore cannot be null");
Validate.notNull(language, "Language cannot be null");
return this.merge(source, new ProductInstanceGroup(), store, language);
}
Aggregations