Skip to content

Instantly share code, notes, and snippets.

@FraukeN
Created July 7, 2018 14:19
Show Gist options
  • Select an option

  • Save FraukeN/5528a559c28e6366a196f327a8476ea7 to your computer and use it in GitHub Desktop.

Select an option

Save FraukeN/5528a559c28e6366a196f327a8476ea7 to your computer and use it in GitHub Desktop.
OverviewPage with DI v 1
public OverviewPage()
{
InitializeComponent();
IRepository<ToDoItem> repo = SimpleIoc.Default.GetInstance<IRepository<ToDoItem>>();
_viewModel = new OverviewVM(repo);
BindingContext = _viewModel;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment