Beispiel #1
0
 /// <summary>
 /// Removes a chore from the trip.
 /// </summary>
 /// <param name="chore">The chore to remove</param>
 public void RemoveChore(Chore chore) => Chores.Remove(chore);
Beispiel #2
0
 /// <summary>
 /// Adds a new chore to the trip.
 /// </summary>
 /// <param name="chore">The chore to add</param>
 public void AddChore(Chore chore) => Chores.Add(chore);