示例#1
0
 public bool RemoveCrew(Crew crew)
 {
     return(this.Boat.Remove(crew));
 }
示例#2
0
 public bool Remove(Crew crew)
 {
     return(this.CrewMembers.Remove(crew));
 }
示例#3
0
 public bool AddCrew(Crew crew)
 {
     return(this.Boat.Add(crew));
 }