public CatalogProductCollectionDto(string catalogReference, ProductCollectionDto productCollection)
 {
     this.CatalogReference  = catalogReference;
     this.ProductCollection = productCollection;
 }
 public CatalogProductCollectionDto(string catalogReference, string configuredProductReference, string collectionReference)
 {
     this.CatalogReference  = catalogReference;
     this.ProductCollection = new ProductCollectionDto(configuredProductReference, collectionReference);
 }