Cashier.Common.Events.OrderPlaced.OrderPlaced C# (CSharp) Method

OrderPlaced() public method

public OrderPlaced ( System.Guid id, System.Guid productId, int quantity ) : System
id System.Guid
productId System.Guid
quantity int
return System
        public OrderPlaced(Guid id, Guid productId, int quantity)
        {
            Id = id;
            ProductId = productId;
            Quantity = quantity;
        }

Same methods

OrderPlaced::OrderPlaced ( System.Guid id, System.Guid productId, int quantity, int version ) : System
OrderPlaced