Skip to content

Instantly share code, notes, and snippets.

@ChrisMissal
Created September 22, 2010 17:11
Show Gist options
  • Save ChrisMissal/592089 to your computer and use it in GitHub Desktop.
Save ChrisMissal/592089 to your computer and use it in GitHub Desktop.
public void Run()
{
IEnumerable<LookupEntry> parsedDimensions = parser.BuildTopDimensions();
IEnumerable<LookupEntry> currentDimensions = dimensionService.GetDimensions();
IDictionary<string, LookupEntry> mostRecentVersions = dimensionVersioner.GetMostRecentVersions(currentDimensions);
IEnumerable<LookupEntry> dimensionsToVersion = dimensionVersioner.Version(parsedDimensions, getMostRecentVersions);
dimensionService.AddDimensions(dimensionsToVersion);
}
public void Run()
{
var parsedDimensions = parser.BuildTopDimensions();
var currentDimensions = dimensionService.GetDimensions();
var mostRecentVersions = dimensionVersioner.GetMostRecentVersions(currentDimensions);
var dimensionsToVersion = dimensionVersioner.Version(parsedDimensions, getMostRecentVersions);
dimensionService.AddDimensions(dimensionsToVersion);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment