Skip to content

Instantly share code, notes, and snippets.

@TWith2Sugars
Created August 21, 2012 15:54
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 TWith2Sugars/3416801 to your computer and use it in GitHub Desktop.
Save TWith2Sugars/3416801 to your computer and use it in GitHub Desktop.
public dynamic CreatedBy
{
get
{
return
new
{
FullName = string.Format("{0} {1}", this.user.CreatedByFirstName, this.user.CreatedByLastName),
Id = this.user.CreatedById,
Self = this.Uri("person", this.user.CreatedById)
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment