Exemple #1
0
 public Measurement(int weerstand, int hartslag, int rondes, SimpleTime time)
 {
     Weerstand = weerstand;
     Hartslag  = hartslag;
     Rondes    = rondes;
     Time      = time;
 }
Exemple #2
0
 public Measurement(int weerstand, int hartslag, int rondes, int time1, int time2)
 {
     Weerstand = weerstand;
     Hartslag  = hartslag;
     Rondes    = rondes;
     Time      = new SimpleTime(time1, time2);
 }
Exemple #3
0
 public bool Equals(SimpleTime other)
 {
     return((Minutes == other.Minutes) && (Seconds == other.Seconds));
 }