March 2020
Intermediate to advanced
534 pages
14h 15m
English
The first part is to create the contract, which is the data that is sent to an endpoint by the business event. This is done as follows:
[DataContract]class ConPIBOMLineContract{ ItemId itemId; Qty qty; BOMUnitId bomUnitId; [DataMember('ItemId'), BusinessEventsDataMember('Material Id')] public ItemId ParmItemId(ItemId _itemId = itemId) { itemId = _itemId; return itemId; } [DataMember('Qty'), BusinessEventsDataMember('Quantity')] public Qty ParmQty(Qty _qty = qty) { qty = _qty; return qty; } [DataMember('BOMUnitId'), ...Read now
Unlock full access