Skip to content

Instantly share code, notes, and snippets.

@panesofglass
Created October 24, 2009 18:04
Show Gist options
  • Save panesofglass/217644 to your computer and use it in GitHub Desktop.
Save panesofglass/217644 to your computer and use it in GitHub Desktop.
IDetailLoader<T>
public interface IDetailLoader<T>
{
void Load(string importPath, Action<T> addToBatch);
IEnumerable<T> GetDetailItems(IEnumerable<Row> rows);
T GetDetailItemFrom(Row row)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment