Skip to content

Instantly share code, notes, and snippets.

@eamonnmcevoy
Last active March 29, 2017 09:48
Show Gist options
  • Save eamonnmcevoy/56af5002a28b7d9f144ece2f3eb40faf to your computer and use it in GitHub Desktop.
Save eamonnmcevoy/56af5002a28b7d9f144ece2f3eb40faf to your computer and use it in GitHub Desktop.
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