LearningRegistry.Harvester.harvestFromDateBoundary C# (CSharp) Method

harvestFromDateBoundary() private method

private harvestFromDateBoundary ( string action, string boundaryType, System.DateTime date ) : HarvestResult
action string
boundaryType string
date System.DateTime
return HarvestResult
		private HarvestResult harvestFromDateBoundary(string action, string boundaryType, DateTime date)
		{
			return LRUtils.Harvest(_baseUri, action,
			                 	new Dictionary<string, object>() {
									{ boundaryType, date.ToString(LRUtils.ISO_8061_FORMAT) }
							 	});
		}
		private HarvestResult harvestFromDateRange(string action, DateTime fromDate, DateTime untilDate)