To Sort Multiple Generic Graph Extensions

To add multiple generic graph extensions to a graph, you need to define the order in which the extensions are applied.

To define this order, add a class that inherits from the PX.Data.SortExtensionsBy class and implement the sorting of the generic class extensions, as the following code shows.
public class ExtensionSort
	: SortExtensionsBy<ExtensionOrderFor<QuoteMaint>
		.FilledWith<
			MultiCurrency,
			SalesPrice,
			Discount,
			SalesTax
		>>
{ }