public ICollectionReader GetCollectionReader(IDiContaner collectionReaderFactory)
 {
     return(collectionReaderFactory.Resolve <SomeBusinessUseCollectionReader>());
 }
 public UserReader(IDiContaner collectionReaderFactory, ICache cache)
 {
     this.collectionReaderFactory = collectionReaderFactory;
     this.cache = cache;
 }
 public ICollectionReader GetCollectionReader(IDiContaner collectionReaderFactory)
 {
     return(collectionReaderFactory.Resolve <ContactCollectionReader>());
 }