Skip to content

Instantly share code, notes, and snippets.

@BrianMRO
Last active February 4, 2021 19:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrianMRO/4556793c1445186301afee6c33226b31 to your computer and use it in GitHub Desktop.
Save BrianMRO/4556793c1445186301afee6c33226b31 to your computer and use it in GitHub Desktop.
Refactor OwnerID - Step 3
#region OwnerID
[Owner(DisplayName = "Owner")]
public virtual int? OwnerID { get; set; }
public abstract class ownerID : PX.Data.BQL.BqlInt.Field<ownerID> { }
#endregion
#region IAssign Members
int? PX.Data.EP.IAssign.OwnerID
{
get { return OwnerID; }
set { OwnerID = value; }
}
#endregion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment