Skip to content

Instantly share code, notes, and snippets.

@RexMorgan
Created November 4, 2010 02:14
Show Gist options
  • Select an option

  • Save RexMorgan/662035 to your computer and use it in GitHub Desktop.

Select an option

Save RexMorgan/662035 to your computer and use it in GitHub Desktop.
public class ProjectFubuRegistry : FubuRegistry
{
public ProjectFubuRegistry()
{
Applies.ToThisAssembly();
Actions.FindWith<PartialActionsSource>();
Views.TryToAttach(findViews =>
{
findViews.by_ViewModel_and_Namespace_and_MethodName();
findViews.by_ViewModel_and_Namespace();
findViews.by_ViewModel();
}
}
}
public class Site : FubuMasterPage
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment