Skip to content

Instantly share code, notes, and snippets.

@gethari
Created July 19, 2019 06:44
Show Gist options
  • Save gethari/cc3c4b98ab0fb0de70470cbafe27cedd to your computer and use it in GitHub Desktop.
Save gethari/cc3c4b98ab0fb0de70470cbafe27cedd to your computer and use it in GitHub Desktop.
public class MyClass
{
private readonly IMapper _mapper;
private readonly ILog _logger;
public MyClass(IMapper mapper,ILog logger){
_mapper = mapper;
_logger = logger;
}
public void DoSomething(){
_mapper.Map(appSetting, applicationSetting);
_logger.Info("Executing DoSomething");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment