Created
May 19, 2022 21:03
-
-
Save lekker-solutions/73d00938acf89275f6e454f05f796ba3 to your computer and use it in GitHub Desktop.
Primary Key
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class InventoryItem : IBqlTable | |
{ | |
public class PK : PrimaryKeyOf<InventoryItem>.By<InventoryItem.inventoryID> | |
{ | |
public static InventoryItem Find(PXGraph graph, int? inventoryID) => FindBy(graph, inventoryID); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment