Beispiel #1
0
 /// <summary>
 /// Remove an existing RecommendSkillPoint from the collection
 /// </summary>
 /// <pdGenerated>Default Remove</pdGenerated>
 public void RemoveRecommendSkillPoint(RecommendSkillPoint oldRecommendSkillPoint)
 {
     if (oldRecommendSkillPoint == null)
     {
         return;
     }
     if (this.recommendSkillPoint != null)
     {
         if (this.recommendSkillPoint.Contains(oldRecommendSkillPoint))
         {
             this.recommendSkillPoint.Remove(oldRecommendSkillPoint);
         }
     }
 }
Beispiel #2
0
 /// <summary>
 /// Add a new RecommendSkillPoint in the collection
 /// </summary>
 /// <pdGenerated>Default Add</pdGenerated>
 public void AddRecommendSkillPoint(RecommendSkillPoint newRecommendSkillPoint)
 {
     if (newRecommendSkillPoint == null)
     {
         return;
     }
     if (this.recommendSkillPoint == null)
     {
         this.recommendSkillPoint = new System.Collections.Generic.List <RecommendSkillPoint>();
     }
     if (!this.recommendSkillPoint.Contains(newRecommendSkillPoint))
     {
         this.recommendSkillPoint.Add(newRecommendSkillPoint);
     }
 }