Last active
September 15, 2015 21:48
-
-
Save endurance/f6135c92b6097a5b1781 to your computer and use it in GitHub Desktop.
ClientCode2.cs
This file contains hidden or 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 class ClientCode | |
{ | |
var _exportFileTypeRepo = new ExportFileTypeRepository(); | |
var _exportFileRepo = new ExportFileRepository(); | |
var _imageStoreRepo = new ImageStoreRepository(); | |
var exportFileService = new ExportFileService() | |
{ | |
_exportFileTypeRepository = _exportFileTypeRepo; | |
_exportFileRepository = _exportFileRepo; | |
_imageStoreRepository = _imageStoreRepo; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment