Last active
July 1, 2016 03:05
-
-
Save rexcfnghk/9e652c10603d0aafa2cf85c3b7409631 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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