//Makes professionalSwimmer to have a bathingsuit
 public override void SetSuit(BathingSuit bathingSuit)
 {
     if (bathingSuit != null)
     {
         base.SetSuit(bathingSuit);
     }
 }
Example #2
0
 public override void SetSuit(BathingSuit bs)
 {
     // ProfessionalSwimmer har alltid BathingSuit pa sig
     if (bs != null)
     {
         base.SetSuit(bs);
     }
 }
Example #3
0
 /// <summary>
 /// Constructor using name and suit parameters
 /// </summary>
 /// <param name="name"></param>
 /// <param name="suit"></param>
 public YoungSwimmer(string name, BathingSuit suit) : base(name, suit)
 {
     SetName(name);
     SetSuit(suit);
 }
Example #4
0
 public virtual void SetSuit(BathingSuit bs)
 {
     this.suit = bs;
 }
Example #5
0
 public Swimmer(string name, BathingSuit bathingsuit)
 {
     this.name = name;
 }
Example #6
0
 /// <summary>
 /// Sets swimmer suit
 /// </summary>
 /// <param name="suit"></param>
 public void SetSuit(BathingSuit suit)
 {
     this.Suit = suit;
 }
Example #7
0
 /// <summary>
 /// Constructor using name and suit parameter
 /// </summary>
 /// <param name="name"></param>
 /// <param name="suit"></param>
 public Swimmer(string name, [Optional] BathingSuit suit)
 {
     this.Name = name;
     this.Suit = suit;
 }
Example #8
0
 public ProfessionalSwimmer(string name, BathingSuit bathingsuit) : base(name, bathingsuit)
 {
 }
 /// <summary>
 /// Constructor using name and suit constructor
 /// </summary>
 /// <param name="name"></param>
 /// <param name="suit"></param>
 public ProfessionalSwimmer(string name, BathingSuit suit) : base(name, suit)
 {
     SetName(name);
     SetSuit(suit);
 }
Example #10
0
 public YoungSwimmer(string name, BathingSuit bathingsuit) : base(name, bathingsuit)
 {
 }
Example #11
0
 //Gives swimmer a bathingsuit or not based on what the swimmer is wearing
 public virtual void SetSuit(BathingSuit bathingSuit)
 {
     suit = bathingSuit;
 }
Example #12
0
 public Swimmer(string name, BathingSuit suit)
 {
 }
Example #13
0
 public override void SetSuit(BathingSuit bathingSuit)
 {
     base.SetSuit(bathingSuit);
 }