コード例 #1
0
 /// <summary>
 ///  The public constructor GeneralEntity is called by the inheriting classes and initializes the fields common to them.
 /// </summary>
 /// <param name="textDescription"> Value for the field textDescription. </param>
 public GeneralEntity(string textDescription)
 {
     _uniqueIdentifier = UniqueIdentifier.CreateIdentifier();
     TextDescription   = textDescription;
 }