Пример #1
0
 public searchRetrieveResponse(JstorService.searchRetrieveResponse other)
 {
     version = other.version;
     numberOfRecords = Int32.Parse(other.numberOfRecords);
     nextRecordPosition = Int32.Parse(other.nextRecordPosition);
     records = searchRetrieveResponseRecordsRecord.FromArray(other.records);
     echoedSearchRetrieveRequest = searchRetrieveResponseEchoedSearchRetrieveRequest.FromArray(other.echoedSearchRetrieveRequest);
 }
Пример #2
0
 public dc(JstorService.searchRetrieveResponseRecordsRecordRecordData other)
     : base(other.RawText())
 {
     relation = other.relation;
     language = other.language;
     coverage = other.coverage;
     publisher = other.publisher;
     title = other.title;
     description = other.description;
     creator = FromArray(other.creator);
     identifier = FromArray(other.identifier);
     type = FromArray(other.type);
     date = FromArray(other.date);
     subject = FromArray(other.subject);
 }
Пример #3
0
 public static IList<searchRetrieveResponseRecordsRecordRecordData> FromArray(JstorService.searchRetrieveResponseRecordsRecordRecordData[] array)
 {
     var results = new List<searchRetrieveResponseRecordsRecordRecordData>();
     foreach (var item in array)
     {
         results.Add(new searchRetrieveResponseRecordsRecordRecordData(item));
     }
     return results;
 }
Пример #4
0
 public searchRetrieveResponseRecordsRecordRecordData(JstorService.searchRetrieveResponseRecordsRecordRecordData other)
 {
     dc = new dc(other);
 }
Пример #5
0
 public searchRetrieveResponseRecordsRecord(JstorService.searchRetrieveResponseRecordsRecord other)
 {
     recordSchema = other.recordSchema;
     recordPacking = other.recordPacking;
     recordPosition = other.recordPosition;
     recordData = searchRetrieveResponseRecordsRecordRecordData.FromArray(other.recordData);
 }
Пример #6
0
 public static IList<searchRetrieveResponseEchoedSearchRetrieveRequest> FromArray(JstorService.searchRetrieveResponseEchoedSearchRetrieveRequest[] array)
 {
     var results = new List<searchRetrieveResponseEchoedSearchRetrieveRequest>();
     foreach (var item in array)
     {
         results.Add(new searchRetrieveResponseEchoedSearchRetrieveRequest(item));
     }
     return results;
 }
Пример #7
0
 public searchRetrieveResponseEchoedSearchRetrieveRequest(JstorService.searchRetrieveResponseEchoedSearchRetrieveRequest other)
 {
     version = other.version;
     query = other.query;
     startRecord = other.startRecord;
     maximumRecords = other.maximumRecords;
     recordPacking = other.recordPacking;
     recordSchema = other.recordSchema;
 }
Пример #8
0
 public NewDataSet(JstorService.NewDataSet other)
 {
     Items = searchRetrieveResponse.FromArray(other.Items);
 }
Пример #9
0
 public NewDataSet(JstorService.NewDataSet other)
 {
     Items = Jstor.Domain.Helpers.searchRetrieveResponse.FromArray(other.Items);
 }