Created
October 24, 2009 18:04
-
-
Save panesofglass/217644 to your computer and use it in GitHub Desktop.
IDetailLoader<T>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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