Created
February 9, 2017 18:53
-
-
Save stimms/8ed8cb51065fd0dafa1671638ca18498 to your computer and use it in GitHub Desktop.
This file contains 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
//what is generated | |
ILog log; | |
IAttributeCodeInfoProvider attributeCodeInfoProvider; | |
public Handler(IAttributeCodeInfoProvider attributeCodeInfoProvider, ILog log) | |
{ | |
this.attributeCodeInfoProvider = attributeCodeInfoProvider; | |
this.log = log; | |
} | |
//what I'd like | |
private readonly ILog _log; | |
private readonly IAttributeCodeInfoProvider _attributeCodeInfoProvider; | |
public Handler(IAttributeCodeInfoProvider attributeCodeInfoProvider, ILog log) | |
{ | |
_attributeCodeInfoProvider = attributeCodeInfoProvider; | |
_log = log; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment