コード例 #1
0
ファイル: LabSpecimen.cs プロジェクト: girish66/REM
 /// <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
ファイル: LabSpecimen.cs プロジェクト: divyang4481/REM
 /// <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
ファイル: LabSpecimen.cs プロジェクト: girish66/REM
 /// <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;
 }