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); }
public AddressController(IFindAddress findAddress) { _findAddress = findAddress; }