Ejemplo n.º 1
0
 private void When(Events.V1.VariantAddedToProduct @event)
 {
     ProductContentId = new ProductContentId(@event.ProductContentId);
     ProductVariantId = new ProductVariantId(@event.ProductVariantId);
     ProductId        = new ProductId(@event.ProductId);
     VariantValue     = new ProductVariantTypeValue(@event.ProductId, @event.VariantTypeValueId, (Enums.VariantType)@event.VariantType);
     Barcode          = @event.Barcode;
 }
Ejemplo n.º 2
0
 private void When(Events.V1.ContentAddedToProduct @event)
 {
     ProductContentId = new ProductContentId(@event.ProductContentId);
     ProductId        = new ProductId(@event.ProductId);
     VariantValue     = new ProductContentVariantValue(ProductId, new VariantTypeValueId(@event.VariantTypeValueId), (Enums.VariantType)@event.VariantType);
     Status           = (Enums.ProductContentStatus)@event.ProductContentStatus;
     Description      = @event.Description;
 }