public CSV_Test_Address()
        {
            CSVAppSettings cSVApp  = new CSVAppSettings();
            string         dirPath = Assembly.GetExecutingAssembly().Location;

            dirPath = Path.GetDirectoryName(dirPath);
            cSVApp.AddressCSVFilePath = $@"{dirPath}\OurAddresses.CSV";
            _findAddress = new CSVService(cSVApp);
        }
Exemple #2
0
 public AddressController(IFindAddress findAddress)
 {
     _findAddress = findAddress;
 }