Skip to content

Instantly share code, notes, and snippets.

@kevinbrechbuehl
Created May 31, 2014 18:22
Show Gist options
  • Select an option

  • Save kevinbrechbuehl/51b574d80155e225f664 to your computer and use it in GitHub Desktop.

Select an option

Save kevinbrechbuehl/51b574d80155e225f664 to your computer and use it in GitHub Desktop.
Base class for view rendering models
public abstract class RenderingModelBase : RenderingModel
{
protected T GetGlassItem<T>()
{
return RenderingContext.CurrentOrNull.Rendering.Item.GlassCast<T>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment