コード例 #1
0
 /// <summary>
 /// Resets the estimation to unselected.
 /// </summary>
 internal void ResetEstimation()
 {
     _estimation = null;
 }
コード例 #2
0
 /// <summary>
 /// Resets the estimation to unselected.
 /// </summary>
 internal void ResetEstimation()
 {
     this.estimation = null;
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Member"/> class.
 /// </summary>
 /// <param name="team">The Scrum team the observer is joining.</param>
 /// <param name="memberData">The member serialization data.</param>
 internal Member(ScrumTeam team, Serialization.MemberData memberData)
     : base(team, memberData)
 {
     _estimation = memberData.Estimation;
 }