Last active
March 29, 2017 09:48
-
-
Save eamonnmcevoy/56af5002a28b7d9f144ece2f3eb40faf 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
private readonly IUserService _userService; | |
public IUserService userService { | |
get { | |
if(_userService == null) | |
_userService = new UserService(); | |
return _userService; | |
} | |
set { _userService = value; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment