Skip to content

Instantly share code, notes, and snippets.

@pawelgradecki
Last active June 13, 2017 12:58
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 pawelgradecki/07121c12f7d68753a6b0f4229fa9ca92 to your computer and use it in GitHub Desktop.
Save pawelgradecki/07121c12f7d68753a6b0f4229fa9ca92 to your computer and use it in GitHub Desktop.
public class MyAccount : Entity
{
public MyAccount() : base("account") { }
public string odx_clientcode
{
get
{
return this.GetAttributeValue<string>("odx_clientcode");
}
set
{
this.SetAttributeValue("odx_clientcode", value);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment