Skip to content

Instantly share code, notes, and snippets.

@davemen
Last active September 10, 2015 16:12
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