static string AddPath(string name) { // our work folder string testdataFolder = Path.Combine(GMFileAccess.GetTestdataFolder(), "DevelopTranscription"); return(Path.Combine(testdataFolder, name)); }
static void Main(string[] args) { Console.WriteLine("Hello World!"); string outputFolder = Path.Combine(GMFileAccess.GetTestdataFolder(), "DevelopRetrieval"); USA_TX_TravisCounty_Austin_CityCouncil_en getTrans = new USA_TX_TravisCounty_Austin_CityCouncil_en(); DateTime lastMeetingTime = new DateTime(2020, 1, 1); bool result = getTrans.Do(lastMeetingTime, outputFolder); }