Skip to content

Instantly share code, notes, and snippets.

@davemen
Last active September 10, 2015 16:12
Show Gist options
  • Save davemen/a7cbbc29819e870e03a4 to your computer and use it in GitHub Desktop.
Save davemen/a7cbbc29819e870e03a4 to your computer and use it in GitHub Desktop.
MVVM UWP with CRUD over a Data Service
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();
Organization = new OrganizationViewModel("Office");
}
public OrganizationViewModel Organization { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment