Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Record"/> class.
 /// </summary>
 /// <param name="infoAreaId">
 /// The information area identifier.
 /// </param>
 /// <param name="recordId">
 /// The record identifier.
 /// </param>
 public Record(string infoAreaId, string recordId)
 {
     this.ident      = new RecordIdentifier(infoAreaId, recordId);
     this.valueCount = 0;
     this.Loaded     = false;
     this.SetVirtualInfoAreaId(infoAreaId);
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Record"/> class.
 /// </summary>
 /// <param name="ident">
 /// The ident.
 /// </param>
 public Record(RecordIdentifier ident)
 {
     this.ident  = new RecordIdentifier(ident);
     this.Loaded = false;
 }