示例#1
0
 /// <summary>
 /// Returns a <see cref="System.String"/> that represents this instance.
 /// </summary>
 /// <returns>
 /// A <see cref="System.String"/> that represents this instance.
 /// </returns>
 public override string ToString()
 {
     return(LabSpecimenType == null
                ? base.ToString()
                : LabSpecimenType.ToString());
 }
示例#2
0
 /// <summary>
 /// Revises the type of the lab specimen.
 /// </summary>
 /// <param name="labSpecimenType">Type of the lab specimen.</param>
 public virtual void ReviseLabSpecimenType(LabSpecimenType labSpecimenType)
 {
     Check.IsNotNull ( labSpecimenType, () => LabSpecimenType );
     LabSpecimenType = labSpecimenType;
 }
示例#3
0
 /// <summary>
 /// Revises the type of the lab specimen.
 /// </summary>
 /// <param name="labSpecimenType">Type of the lab specimen.</param>
 public virtual void ReviseLabSpecimenType(LabSpecimenType labSpecimenType)
 {
     Check.IsNotNull(labSpecimenType, () => LabSpecimenType);
     LabSpecimenType = labSpecimenType;
 }