Last active
September 10, 2015 16:12
-
-
Save davemen/a7cbbc29819e870e03a4 to your computer and use it in GitHub Desktop.
MVVM UWP with CRUD over a Data Service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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