Exemplo n.º 1
0
 //Makes professionalSwimmer to have a bathingsuit
 public override void SetSuit(BathingSuit bathingSuit)
 {
     if (bathingSuit != null)
     {
         base.SetSuit(bathingSuit);
     }
 }
Exemplo n.º 2
0
 public override void SetSuit(BathingSuit bs)
 {
     // ProfessionalSwimmer har alltid BathingSuit pa sig
     if (bs != null)
     {
         base.SetSuit(bs);
     }
 }
Exemplo n.º 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);
 }
Exemplo n.º 4
0
 public virtual void SetSuit(BathingSuit bs)
 {
     this.suit = bs;
 }
Exemplo n.º 5
0
 public Swimmer(string name, BathingSuit bathingsuit)
 {
     this.name = name;
 }
Exemplo n.º 6
0
 /// <summary>
 /// Sets swimmer suit
 /// </summary>
 /// <param name="suit"></param>
 public void SetSuit(BathingSuit suit)
 {
     this.Suit = suit;
 }
Exemplo n.º 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;
 }
Exemplo n.º 8
0
 public ProfessionalSwimmer(string name, BathingSuit bathingsuit) : base(name, bathingsuit)
 {
 }
Exemplo n.º 9
0
 /// <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);
 }
Exemplo n.º 10
0
 public YoungSwimmer(string name, BathingSuit bathingsuit) : base(name, bathingsuit)
 {
 }
Exemplo n.º 11
0
 //Gives swimmer a bathingsuit or not based on what the swimmer is wearing
 public virtual void SetSuit(BathingSuit bathingSuit)
 {
     suit = bathingSuit;
 }
Exemplo n.º 12
0
 public Swimmer(string name, BathingSuit suit)
 {
 }
Exemplo n.º 13
0
 public override void SetSuit(BathingSuit bathingSuit)
 {
     base.SetSuit(bathingSuit);
 }