Created
July 19, 2019 06:14
-
-
Save gethari/e739e34873b57013a604868b11ba0c72 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 class MyClass | |
{ | |
private readonly IMapper _mapper; | |
public MyClass(IMapper mapper){ | |
_mapper = mapper; | |
} | |
public void DoSomething(){ | |
_mapper.Map(appSetting, applicationSetting); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment