To Sort Multiple Generic Graph Extensions

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

To define the order in which the generic graph extensions are applied, add the class inherited 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
		>>
{ }