Skip to content

Instantly share code, notes, and snippets.

@gethari
Created July 19, 2019 06:14
Show Gist options
  • Save gethari/e739e34873b57013a604868b11ba0c72 to your computer and use it in GitHub Desktop.
Save gethari/e739e34873b57013a604868b11ba0c72 to your computer and use it in GitHub Desktop.
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