Created
October 13, 2015 02:26
-
-
Save Fodsuk/3371221d4777e3a2d1d4 to your computer and use it in GitHub Desktop.
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
//ImportSessionContext? | |
public class ImportSession : IImportSession | |
{ | |
private readonly IImportSessionRepository _importSessionRepository; | |
public ImportSession(IImportSessionRepository importSessionRepository) | |
{ | |
_importSessionRepository = importSessionRepository; | |
} | |
//ImportSession? | |
public ImportSessionReference CreateReference(int instId, int genericImporterId) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment