Created
February 25, 2018 15:35
-
-
Save talkingdotnet/380c3fe87f0db39915e2398928d40bb6 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
private string _connectionString = ""; | |
private string _directoryPath = ""; | |
public DataExtractor(IConfigurationRoot config) | |
{ | |
_connectionString = config["AppSettings:SQLConnectionString"]; | |
_directoryPath = config["AppSettings:SourceDirectoryPath"]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment