Example #1
0
		public ADOStream(string connectionstring, string streamId, string fileName)
		{
            _fileName = fileName;
            _rm = new ResourceManagerDB(connectionstring);
			_streamId = streamId;
			Stream thisStream = this;
			_rm._GetStream(_streamId, ref thisStream);
		}
Example #2
0
 public DBDocument(string documentRepository)
 {
     _documentRepository = documentRepository;
     _rm = new ResourceManagerDB(_documentRepository);
 }