Skip to content

Instantly share code, notes, and snippets.

@rexcfnghk
Last active July 1, 2016 03:05
Show Gist options
  • Select an option

  • Save rexcfnghk/9e652c10603d0aafa2cf85c3b7409631 to your computer and use it in GitHub Desktop.

Select an option

Save rexcfnghk/9e652c10603d0aafa2cf85c3b7409631 to your computer and use it in GitHub Desktop.
public abstract class BaseController : Controller
{
protected BaseController(UserProfile userProfile)
{
UserProfile = userProfile;
}
protected UserProfile UserProfile { get; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment